function YBFStoryObj(title, url){
	this.title=title;
	this.url=url;
}

var YBFStoriesSet = new Array();
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Dallas Partners of Chinese Manufacturer Say U.S. Wind-Power Blade Plant Planned', '/yb/tx/article.aspx?story_id=137992867');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Dallas, Fort Worth Get Short Straw in Highway Spending plan OK\'d by State', '/yb/tx/article.aspx?story_id=137992904');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Water Ruling Favors Okla.: Decision Doesn\'t Dismiss Texas District\'s Bid for Rights', '/yb/tx/article.aspx?story_id=137943981');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Imperial Sugar, Two Others To Build Cane Sugar Plant', '/yb/tx/article.aspx?story_id=138016741');
YBFStoriesSet[YBFStoriesSet.length] = new YBFStoryObj('Stimulus Funds Help  Finance El Paso Stormwater Plan', '/yb/tx/article.aspx?story_id=137993453');

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();
}