homeOn      = new Image(); homeOn.src      = "on/home.gif";
specialOn   = new Image(); specialOn.src   = "on/special.gif";
servicesOn  = new Image(); servicesOn.src  = "on/services.gif";
locationsOn = new Image(); locationsOn.src = "on/locations.gif";
couponsOn   = new Image(); couponsOn.src   = "on/coupons.gif";
clubOn   = new Image(); clubOn.src   = "on/club.gif";


function imgOn(imgName) {
	document [imgName].src = eval((imgName) + "On.src");
}
function imgOff(imgName) {
	document [imgName].src = "off/" + (imgName) + ".gif";
}