// JET / shared Javascripts
function menu(id,met) {
var cell	= document.getElementById("MenuCell"+id);
var txt		= document.getElementById("LinkTxt"+id);

	if (met=="over") {
	cell.style.background = "url(images/menuHoover.png) center center repeat-x";
	txt.style.color		  = "#000000";	
	} else {
	cell.style.background = "url(images/menubg.png) center center repeat-x";
	txt.style.color		  = "#666666";	
	}
}

function hoover(id,met) {
var theRow	= document.getElementById("row"+id);
	
	if(met=="over") {
		theRow.style.background = "#F7F6F2";
	} 
	else {
		theRow.style.background = "";
	}
}