function rollover(strImageName){
//	document.getElementById("mainimage").src = strImageName;
	alert(strImageName);
}

// JavaScript Document

var jsmenu01 	= document.getElementById("menu01");
var jsmenu01sub = document.getElementById("subnav01");

//	highlight("menu00")
//	unhighlight("menu01")

jsmenu01sub.onmouseover = function(){
	showDiv("subnav01");	
}
jsmenu01.onmouseover = function(){
	showDiv("subnav01");	
}

jsmenu01sub.onmouseout = function(){
	hideDiv("subnav01");
}
jsmenu01.onmouseout = function(){
	hideDiv("subnav01");
}

function highlight(menuID){
	document.getElementById(menuID).style.backgroundColor='#4c4c4c';

	if( menuID == "menu06" ){
		document.getElementById(menuID).style.color='#08ACEE;';
	} else {
		document.getElementById(menuID).style.color='white';
	}
}
function unhighlight(menuID){
	document.getElementById(menuID).style.backgroundColor='white';

	if( menuID == "menu06" ){
		document.getElementById(menuID).style.color='#08ACEE;';
	} else {
		document.getElementById(menuID).style.color='#333333';
	}

}


function showDiv(menuID) {
	document.getElementById(menuID).style.display = "block";
	return false;
}

function hideDiv(menuID) {
	document.getElementById(menuID).style.display = "none";
	return false;
}
