function MenuCellMouseOver(elem)
{  
	var theclass 
	theclass = elem.className;
	if (theclass.indexOf("Over")< 0) 
	{	
		theclass = theclass + "Over";
		elem.className = theclass;	
	}
}
function MenuCellMouseOut(elem)
{ 
	var theclass ;	
	theclass = elem.className;
	theclass = theclass.replace("Over","");
    elem.className = theclass;
}

function MenuCellMouseUp(elem, path)
{ 
	location.href = path;
}