function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Tucson Medical Center Begins $120M Update of Facilities', '/yb/sw/article.aspx?story_id=137185390');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Crews at Work on Yuma Bridge Widening', '/yb/sw/article.aspx?story_id=137193027');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('New Mexico Pipeline Funding Approved', '/yb/sw/article.aspx?story_id=137085337');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Pay Delays Slamming Arizona Subcontractors', '/yb/sw/article.aspx?story_id=136888418');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('In Downturn, Tucson-Area Raw Land for Homes Now Dead Weight', '/yb/sw/article.aspx?story_id=136895251');

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();
}