function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('$31-Million Construction Project Aims to Improve Safety on Milwaukee\'s Bluemound Road', '/yb/mw/article.aspx?story_id=137621280');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Leaders Talk Progress About Ohio River Bridges', '/yb/mw/article.aspx?story_id=137648857');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Saved Federal Stimulus Money Aids Area Road Projects', '/yb/mw/article.aspx?story_id=137797891');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('BRIEF: Indiana Toll Road workers tap operating-engineer union for representation', '/yb/mw/article.aspx?story_id=137749558');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Firm enjoys epic growth: New offices in Verona, Wis., feature green architecture', '/yb/mw/article.aspx?story_id=137764884');

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();
}