function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Contract Awarded to Englewood Firm for Newark Airport Project', '/yb/ny/article.aspx?story_id=138015631');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Albany Unveils Design for New Downtown Convention Center', '/yb/ny/article.aspx?story_id=137996297');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Public Input on West Haven Streetscape Plan Sought', '/yb/ny/article.aspx?story_id=137947254');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Deteriorating Demarest Building to be Replaced', '/yb/ny/article.aspx?story_id=137968683');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('SUNY Albany Trustees OK Acquisition of Land for New Campus', '/yb/ny/article.aspx?story_id=137906338');

if (typeof YBFStoriesSet != "undefined" && YBFStoriesSet.length > 0) {
	var numberOfStories = YBFStoriesSet.length;
	
	document.open();
	document.write("<ul id='newsWire'>");	
    
	for (var i=0; i<numberOfStories ; i++) {
		document.write("<li><a href='" + YBFStoriesSet[i].url + "'>");
		document.write(YBFStoriesSet[i].title + "</a></li>");
	}
	
	document.write("</ul>");
	document.close();
}