	
	var NN  = (document.layers) ? 1 : 0;
	var IE  = (document.all) ? 1: 0;
	var NN6 = (!document.all && document.getElementById) ? 1: 0;
	
	function hover(id)
	{	
		if (IE == 1) document.all["menu"+id].style.background = 'url(dev.movinguide.com/img/menu_bg_pr.gif) repeat-x';
		//if (NN == 1) eval('document.menu'+id+'.background = "url(/img/menu_bg_pr.gif) repeat-x";');
		if (NN6 == 1) document.getElementById("menu"+id).style.background = 'url(dev.movinguide.com/img/menu_bg_pr.gif) repeat-x';
	}
	
	function leave(id)
	{
		if (IE == 1) {
		    document.all["menu"+id].style.background = 'url(http://dev.movinguide.com/img/menu_bg.gif) repeat-x';
		}
		//if (NN == 1)  eval("document.menu"+id+".background = 'url(/img/menu_bg.gif) repeat-x';");
		if (NN6 == 1) {
		    document.getElementById("menu"+id).style.background = 'url(http://dev.movinguide.com/img/menu_bg.gif) repeat-x';
		}
	}
	
	function qmhover(id)
	{
		if (IE == 1) document.all[id].style.background = '#C4CDDF';
		//if (NN == 1)  eval("document."+id+".background = '#C4CDDF'");
		if (NN6 == 1) document.getElementById(id).style.background = '#C4CDDF';
	}
	
	function qmout(id)
	{
		if (IE == 1) document.all[id].style.background = '#AFBCD4';
		//if (NN == 1)  eval("document."+id+".background = '#AFBCD4';");
		if (NN6 == 1) document.getElementById(id).style.background = '#AFBCD4';
	}