//Rollover Script
function rolloverButtons(imgID, imgSrc){
	if(document.getElementById(imgID).src != imgSrc){
		document.getElementById(imgID).src = imgSrc;
	}
}

function setSpacers() {
	var contentWidth = document.getElementById('widthWrapper').offsetWidth;
	var menuWidth = 0;
	for(menuNum = 1; menuNum < 9; menuNum++){
		menuWidth = menuWidth + document.getElementById("menuWrapper" + menuNum).offsetWidth;
	}
	var spacerWidth = Math.round((contentWidth - menuWidth) / 9);	
	for(i = 1; i < 10; i++){
		document.getElementById("spacer" + i).style.width = spacerWidth + "px";
	}
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=0,width=640,height=480,left=640,top=300');");
}