function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Del Monte Foods\' CEO Predicts Gains by Bringing Together San Fran Offices to One Location', '/yb/hq/article.aspx?story_id=137212936');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Anadarko\'s Headquarters Achieves LEED Certification', '/yb/hq/article.aspx?story_id=137521645');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Plexus Corp. HQ to Be Lively & LEED, Says CFO', '/yb/hq/article.aspx?story_id=137574497');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('E&S Foods Plans Carbon-Neutral Headquarters.', '/yb/hq/article.aspx?story_id=137259380');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('$47M HQ Is Recession \'Bargain\'', '/yb/hq/article.aspx?story_id=136968882');

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();
}