/////////////////// menu codes ////////////////
var mytimeout;
var lastdivshown="";
function showmenu(divname,e)
{
	
	var myEvent = window.event ? window.event : e;
	
	
	document.getElementById(divname).style.left=myEvent.clientX+"px";
	
	//$("#"+divname).fadeIn("slow");
	document.getElementById(divname).style.display="block";
	
	if((lastdivshown!="")&&(lastdivshown!=divname))
	{
	 if(document.getElementById(lastdivshown).style.display!="none")
	 {//$("#"+lastdivshown).fadeOut("fast");
	 document.getElementById(lastdivshown).style.display="none";
	 }
	}
	lastdivshown=divname;
	clearTimeout(mytimeout);
}

function hidemenu()
{
//alert(lastdivshown);
//$("#"+lastdivshown).fadeOut("slow");
document.getElementById(lastdivshown).style.display="none";
}

function overmenu(divname,obj)
{
obj.style.backgroundColor="#0170C1";
obj.style.color="#ffffff";
clearTimeout(mytimeout);

}

function outmenu(divname,obj)
{
obj.style.backgroundColor="#ffffff";
obj.style.color="#000000";
mytimeout=setTimeout("hidemenu();",500);

}

function outmenu1(divname)
{
mytimeout=setTimeout("hidemenu();",500);
}

function overlink(obj)
{
obj.style.color="#C50102";
}

function outlink(obj)
{
obj.style.color="#666666";
}
function procover(obj)
{
obj.style.backgroundImage="url(img/process-butt2.jpg)";	
}
function procout(obj)
{
obj.style.backgroundImage="url(img/process-butt1.jpg)";	
}