// loads global functionsloadGlobalFunctions=function(){	// rotate contents every 5 seconds	rotateContent=function(){		i++;		if(i==message.length){i=0}		container.innerHTML=message[i];		setTimeout('rotateContent()', 5*1000);	}	// defines messages array	var message=new Array();	message[0]='Get the latest news and a chance to win cool Impact crap. <a href="contact/">Sign up for the mailing list.</a>';	message[1]='<a href="season/">Watch the <i>House of Lucky</i> trailer</a>';	message[2]='Like an Impact T-shirt for your computer. <a href="impactcrap/wallpapers.php">Download the new Impact Splat wallpaper.</a>';	var i=0;	var container=document.getElementById('container');	rotateContent();}//]]>
