
function InvokeTimer(){
	//setTimeout('ShowPromotions()', 5000);	
}

function ShowPromotions(){
	
	var promoDivEl = document.getElementById("promotionsDiv");
	
	if (document.styleSheets[0].cssRules)
		crossrule=document.styleSheets[0].cssRules[0];
	else if (document.styleSheets[0].rules)
		crossrule=document.styleSheets[0].rules[0];
	
	//alert(crossrule);
	//promoDivEl.style. = "none";
			
}

