if (document.images) {
	n1on = new Image();    n1on.src = "images/nav-home-on.gif";
	n2on = new Image();    n2on.src = "images/nav-about-on.gif";
	n3on = new Image();    n3on.src = "images/nav-contact-on.gif";
	n4on = new Image();    n4on.src = "images/nav-search-on.gif";
}

function imgOn(imgName) {
	if (document.images) {
		oSrc=document[imgName].src;
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgOff(imgName) {
	if(oSrc){
		document[imgName].src = oSrc;
	}
}