function over()	{
	var e = event.srcElement
	e.style.borderColor = '#999999'
	e.style.backgroundColor = '#1FC565'
}
function out()	{
	var e = event.srcElement
	e.style.borderColor = '#f1f1f1'
	e.style.backgroundColor = '#A8E5B2'
}
function up()	{
	var e = event.srcElement
	e.style.backgroundColor = '#A8E5B2'
}
function down()	{
	var e = event.srcElement
	e.style.backgroundColor = '#999999'
	var submenuId=e.id.substring(7,8); 

	for(j=1;j<5;j++)	{
		if(document.all("item"+String(submenuId)+String(j)))	{
			if(document.all("item"+String(submenuId)+String(j)).style.display=="")
				document.all("item"+String(submenuId)+String(j)).style.display="none";
			else
				document.all("item"+String(submenuId)+String(j)).style.display="";
		}
	}

	if(event.srcElement.id.substring(0,7)!="subHead")	{
		var newUrl=event.srcElement.id+".htm";
		if(event.srcElement.id.substring(0,6)=="item31" || event.srcElement.id.substring(0,6)=="item32")	
			window.open(newUrl);	
		else	
			window.location.href=newUrl;
			
	}
}
