var news_assets = [
	{
	//HEADLINE
	headline:"RIVAL INDUSTRIES FEATURED IN DIGITAL SIGNAGE MAGAZINE",
	//SUB
	subline:"4/21/2010: ATLANTA, GA",
	//SUMMARY
	summary:"Rival Industries is currently being featured in the April 2010 issue of Digital Signage Magazine for their award winning touchscreen applications “Virtual Home” and “Mobile Games Market”.",
	//URL
	url:"http://localhost/~anastasia/RivalWeb/events/100410_DCM.html"
	}
	/*,
	{
	//HEADLINE
	headline:"BLAH BLAH RIVAL INDUSTRIES FEATURED IN DIGITAL SIGNAGE MAGAZINE",
	//SUB
	subline:"BLAH BLAH 4/21/2010: ATLANTA, GA",
	//SUMMARY
	summary:"BLAH BLAH Rival Industries is currently being featured in the April 2010 issue of  Digital Signage Magazine for their award winning touchscreen applications “Virtual Home” and “Mobile Games Market”.",
	//URL
	url:"BLAH BLAH http://localhost/~anastasia/RivalWeb/events/100410_DCM.html"
	}*/
];
var news_index = 0;
function refreshNews(){
	//alert("hello");
	clearTimeout(newstimer);
	if(news_assets.length > 1){
		news_index = (news_index + 1) % news_assets.length;
		document.getElementById("news_head").href = news_assets[news_index].url;
		document.getElementById("news_head").innerHTML = news_assets[news_index].headline.toUpperCase();
		document.getElementById("news_sub").innerHTML =  news_assets[news_index].subline;
		document.getElementById("news_summary").innerHTML =  news_assets[news_index].summary;
		document.getElementById("news_url").href =  news_assets[news_index].url;
		newstimer=setTimeout('refreshNews()', 10000);
	}
	
}
var newstimer=setTimeout('refreshNews()', 10000);

//alert("poo");

