function SetACookie2(name,value) {
	var theCookie = name + "=";
	theCookie += escape(value);
	document.cookie = theCookie;
}

function ImageRotate() {

var imgVariable = new Image();

	// Testing random number generation
	// var n;
	// for (n=0;n<10;n++) {
	// alert(Math.floor(Math.random()*5+1));
	// }
	
	var count;
	(document.cookie.indexOf("seniorImage")!=-1)?
	      cookieEnabled=true:cookieEnabled=false;
	if(cookieEnabled) {
		count = GetACookie('seniorImage');
		if (count<5) {
			count++;
		} else {
			count=1;
		}
		SetACookie2('seniorImage',count);
		document.getElementById('imageHolder').setAttribute('src','images/home/titlebar' + count + '.jpg');
   } else {
   	count = Math.floor(Math.random()*5+1);
   	SetACookie2('seniorImage',count);
   	document.getElementById('imageHolder').setAttribute('src','images/home/titlebar' + count + '.jpg');
   }
}
