var DOM = document.getElementById ? true : false;
var ie = document.all ? true : false;

//getting element
function getElement(name) {
	if (ie) { return document.all[name]; }
	 else if(DOM){ return document.getElementById(name); }
		  else { return document.name; }
}

function IOver (name)
{
	var image = getElement(name);
	image.src='/wp-content/themes/fastroot/images/'+name+'_ovr.gif';
}

function IOut (name)
{	
	var image = getElement(name);
	image.src='/wp-content/themes/fastroot/images/'+name+'.gif';
}

	navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", navHover);

a0=new Image();a0.src="/wp-content/themes/fastroot/images/ico_sitemap_ovr.gif";
a1=new Image();a1.src="/wp-content/themes/fastroot/images/ico_mail_ovr.gif";
a2=new Image();a2.src="/wp-content/themes/fastroot/images/ico_print_ovr.gif";



