
if(document.images) {

	img1on = new Image();
	img1on.src = "images/anyone-on.gif";
	img1off = new Image();
	img1off.src = "images/anyone-off.gif";

	img2on = new Image();
	img2on.src = "images/anything-on.gif";
	img2off = new Image();
	img2off.src = "images/anything-off.gif";

	img3on = new Image();
	img3on.src = "images/anywhere-on.gif";
	img3off = new Image();
	img3off.src = "images/anywhere-off.gif";

	img4on = new Image();
	img4on.src = "images/about-on.gif";
	img4off = new Image();
	img4off.src = "images/about-off.gif";

	img5on = new Image();
	img5on.src = "images/home-on.gif";
	img5off = new Image();
	img5off.src = "images/home-off.gif";

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
	        }
	}

function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        	}
	}
}
