function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Audit shows mangled management  of Oregon Zoo projects', '/yb/nw/article.aspx?story_id=137813960');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Stimulus spending adds nearly 10,000 jobs in Oregon', '/yb/nw/article.aspx?story_id=137281489');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('School District Sues over Puyallup City Hall Location', '/yb/nw/article.aspx?story_id=137772975');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('$300M  Solar Project Planned Near Cle Elum', '/yb/nw/article.aspx?story_id=137186475');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Post-recession Employment Growth Will Be in Green Jobs', '/yb/nw/article.aspx?story_id=137770331');

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();
}