function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Primoris Services Corp. to Acquire James Construction Group LLC (11/19/09)', '/yb/sc/article.aspx?story_id=137955773');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('CenterPoint Energy Signs Joint Development Agreement to Explore New Pipeline in North Louisiana (11/19/09)', '/yb/sc/article.aspx?story_id=137972361');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Corps of Engineers\' Vicksburg, Miss., museum to open in 2011', '/yb/sc/article.aspx?story_id=137932425');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Industries\' interest in Alabama county up as economy improves (11/18/09)', '/yb/sc/article.aspx?story_id=137907021');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Work to resume on stalled building at University of Kentucky campus (11/18/09)', '/yb/sc/article.aspx?story_id=137895749');

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();
}