var currlink;
var Links = new Array(	"/hosting/dedicatedhosting.htm" // dedicated hosting / everything you need
					 ,  "/e-commerce/e-commerce.htm" 	// Jim just received an order
					 ,  "/hosting/mailbagging.htm" 		// knowing your email is never lost
					 , "/e-commerce/e-commerce.htm" 	// e-commerce
					 , "/hosting/mailbagging.htm"		// Mailbagging
					 , "/firewall/firewall.htm" 		// firewall
					 , "/services/internetcameras.htm" 	// being there without being there
					 , "/development/development.htm" 	// Jason has a website, do you?
					 , "/ssl/sslcertificates.htm" 		// SSL Certificates		
					 , "/firewall/firewall.htm" 		// TotalSecure
					 
					  );
function followlink()
{
  window.location = currlink;
}
					  
function FlipImg()
{
	var imagecount = 10; 		
	var RotMilliseconds = 10000;
	var ImageDir = "/images/HeadRotations/";
	
	var i = Math.random() * (imagecount - 1);
	i = Math.round(i) + 1;
	document.getElementById("Rot").style.background =" url(" + ImageDir + "head_bg" + i + ".jpg)";
	currlink = Links[i-1];
	document.getElementById("Rot").onclick = followlink;
	// set up for next rotation	
	window.setTimeout('FlipImg()', RotMilliseconds);	
}