function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Bay Bridge S-Curve Death Highlights Safety Concerns', '/yb/ca/article.aspx?story_id=137551303');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Landscape Architect Lawrence Halprin Dies at 93', '/yb/ca/article.aspx?story_id=136954740');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Group planning push against I-5 expansion', '/yb/ca/article.aspx?story_id=137622935');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('All bids for Highway 76 widening come in low', '/yb/ca/article.aspx?story_id=137527266');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Fortune Data Centers Earns LEED Gold Certification From U.S. Green Building Council for Silicon Valley Facility', '/yb/ca/article.aspx?story_id=137412991');

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();
}