function logoRotator() {
	var ImgArray = ['/images/cds/sm09laval.jpg',
			'/images/cds/sm09mtu.jpg',
			'/images/cds/sm09csu.jpg'];
			
	var CapArray = ['Universite Laval, 1st Place Overall - 2009 SAE Supermileage&reg;',
			'Michigan Tech University, 2nd Place Overall - 2009 SAE Supermileage&reg;',
			'Cal State University - Los Angeles, 3rd Place Overall - 2009 SAE Supermileage&reg;'];
			
	var i = Math.floor(Math.random()*ImgArray.length);


	toplogoid = document.getElementById('toplogo-main');
	toplogoid.src = ImgArray[i];

	captionid = document.getElementById('toplogo-caption');
	captionid.innerHTML = CapArray[i];
	
	window.setTimeout("logoRotator()", 10*1000);
}


function overNav(divid) {
	thisid = document.getElementById(divid);
	thisid.style.backgroundColor = '#663300';
	thisid.style.color = 'white';
}
function offNav(divid) {
	thisid = document.getElementById(divid);
	thisid.style.backgroundColor = '#eeeeee';
	thisid.style.color = '#222222';
}
function offNav2(divid) {
	thisid = document.getElementById(divid);
	thisid.style.backgroundColor = '#cc9966';
	thisid.style.color = '#222222';
}
function offNav3(divid) {
	thisid = document.getElementById(divid);
	thisid.style.backgroundColor = '#cccccc';
	thisid.style.color = '#222222';
}
