var news_assets = [
	{
	//HEADLINE
	headline:"&quot;Digital Signage Toolkit&quot; featured in Signage Solutions Magazine",
	//SUB
	subline:"4/05/2011: ATLANTA, GA",
	//SUMMARY
	summary:"The Digital Signage Toolkit presentation engine provides an easy to use, highly customizable branded customer experience supported by a turnkey solution for delivery and management of content that can be configured on the fly. <a href='http://http://signagesolutions.imirus.com/Mpowered/book/vsign11/i2/p32'>View the source.</a>",
	//URL
	url:"events/040511_Toolkit.html"
	},
	{
	//HEADLINE
	headline:"Georgia Tech Alumni Magazine Commends Rival Industries",
	//SUB
	subline:"9/12/2010: ATLANTA, GA",
	//SUMMARY
	summary:"The article profiles Rival Industries foundation and independent approach. &quot;We knew that we could build something different and better for ourselves...We wanted to pursue our own goals and make our own path&quot;. <a href='http://gtalumnimag.com/?p=4643'>View the source.</a>",
	//URL
	url:"events/091210_GATech.html"
	},
	{
	//HEADLINE
	headline:"&quot;General Orders No. 9&quot; Wins Big at 2010 Film Festivals",
	//SUB
	subline:"2009 - 2010",
	//SUMMARY
	summary:"In 2009 Rival Industries created and animated a 3D high-definition dream sequence for the independent film General Orders No. 9. The film has been screened as an official selection at numerous 2010 film festivals across <br/>the country.",
	//URL
	url:"events/091410_No9.html"
	},
	{
	//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 &quot;Virtual Home&quot; and &quot;Mobile Games Market&quot;.",
	//URL
	url:"events/042110_DCM.html"
	}
];
var news_index = 0;
function refreshNews(){
	//alert("hello");
	clearTimeout(newstimer);
	if(news_assets.length > 1){
		news_index = (news_index) % news_assets.length;
		//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('nextNews()', 10000);
	}
	
}
function nextNews(){
	clearTimeout(newstimer);
	if(news_assets.length > 1){
		news_index = (news_index + 1) % news_assets.length;
		refreshNews();
	}
}
function prevNews(){
	clearTimeout(newstimer);
	if(news_assets.length > 1){
		news_index--;
		if(news_index < 0) {
			news_index += news_assets.length;
		}
		refreshNews();
	}
}
var newstimer;
refreshNews();
/*var newstimer=setTimeout('refreshNews()', 10000);*/

//alert("poo");


