function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Monster Crane Near Kansas City Jobsite', '/yb/co/article.aspx?story_id=136869431');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Chicago Moves to Stop Block 37 Foreclosure', '/yb/co/article.aspx?story_id=137164276');

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();
}