function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


if(document.getElementById){
	document.writeln('<style type="text/css" media="all">');
	document.writeln('<!--');
	document.writeln('.subMenu{display:none}');
	document.writeln('-->');
	document.writeln('</style>');
 }

	   
function showHide(id){
	var disp = document.getElementById(id).style.display;
	if(disp == "none"){
		document.getElementById(id).style.display = "block";
	}
       else{
		document.getElementById(id).style.display = "block";
	}
	return false;
}

function hideShow(id){
	var disp = document.getElementById(id).style.display;
	if(disp == "block"){
		document.getElementById(id).style.display = "none";
	}
       else{
		document.getElementById(id).style.display = "none";
	}
	return false;
}

function bgHoverOn(id){
	document.getElementById(id).style.background = "url(../images/menu_hover.gif) no-repeat";
	return false;
}

function bgHoverOff(id){
	document.getElementById(id).style.background = "url(../images/menu_normal.gif) no-repeat";
	return false;
}
