if (document.images) {
	n6on = new Image();    n6on.src = "images/nav-0on.png";
	n1on = new Image();    n1on.src = "images/nav-1on.png";
	n2on = new Image();    n2on.src = "images/nav-2on.png";
	n3on = new Image();    n3on.src = "images/nav-3on.png";
	n4on = new Image();    n4on.src = "images/nav-4on.png";
	n5on = new Image();    n5on.src = "images/nav-5on.png";
}

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;
	}
}

