/*menu = new Array;
menu[0] = 'home';
menu[1] = 'who';
menu[2] = 'what';
menu[3] = 'where';
menu[4] = 'when';
function menuRollOver (li) {
	if (BrowserDetect.browser != 'Explorer') {
		active = document.getElementById(li).firstChild;
		selected = document.getElementById(base).firstChild;
		active.style.backgroundColor='#'+col;
		if (base != li && base != null) {
			selected.style.backgroundColor='transparent';
		}
	}
}
function menuRollOut (li) {
	if (BrowserDetect.browser != 'Explorer') {
		active = document.getElementById(li).firstChild;
		selected = document.getElementById(base).firstChild;
		active.style.backgroundColor='';
		if (base != null) {
			selected.style.backgroundColor='#'+col;
		}
	}
}*/

function menuRollOver (li) {
	//Changed this is 1==1 That will always be True
	if (1==1) {
		active = document.getElementById(li).firstChild;
		active.style.backgroundColor='#'+col;
		if (base != li && base != null) {
			selected = document.getElementById(base).firstChild;
			selected.style.backgroundColor='transparent';
		}
		//Fire a function on mouseover to show the div
		//with the other links in.
		show(li);
	}
}
function menuRollOut (li) {
	//Changed this is 1==1 That will always be True
	if (1==1) {
		active = document.getElementById(li).firstChild;
		active.style.backgroundColor='';
		if (base != null) {
			selected = document.getElementById(base).firstChild;
			selected.style.backgroundColor='#'+col;
		}
		//Fire a function on mouseout to hide the div
		//with the other links in.
		hide(li);
	}
}
//Functions that will only fire if the div-base exists
function show(theId){
	if(document.getElementById("div-"+theId)) document.getElementById("div-"+theId).style.visibility='visible';
}
function hide(theId){
	if(document.getElementById("div-"+theId)) document.getElementById("div-"+theId).style.visibility='hidden';
}