function logoRotator() {
	var ImgArray = ['/images/cds/bajaal09uds.jpg',
			'/images/cds/bajaor09osu.jpg',
			'/images/cds/bajawi09osu.jpg'];
			
	var CapArray = ['Universite de Sherbrooke, 1st Place Overall - 2009 Baja SAE&reg; Alabama',
			'Oregon State University, 1st Place Overall - 2009 Baja SAE&reg; Oregon',
			'Oregon State University, 1st Place Overall - 2009 Baja SAE&reg; Wisconsin'];
			
	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 = '#006600';
	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 = '#99cc99';
	thisid.style.color = '#222222';
}
function offNav3(divid) {
	thisid = document.getElementById(divid);
	thisid.style.backgroundColor = '#cccccc';
	thisid.style.color = '#222222';
}
