if (document.images) {
	on = new Array();

	on["home"] = new Image();
	on["home"].src = "images/menu/home2.gif"
	on["about"] = new Image();
	on["about"].src = "images/menu/about2.gif"
	on["products"] = new Image();
	on["products"].src = "images/menu/products2.gif"
	on["quote"] = new Image();
	on["quote"].src = "images/menu/quote2.gif"
	on["contact"] = new Image();
	on["contact"].src = "images/menu/contact2.gif"

	off = new Array();

	off["home"] = new Image();
	off["home"].src = "images/menu/home.gif"
	off["about"] = new Image();
	off["about"].src = "images/menu/about.gif"
	off["products"] = new Image();
	off["products"].src = "images/menu/products.gif"
	off["quote"] = new Image();
	off["quote"].src = "images/menu/quote.gif"
	off["contact"] = new Image();
	off["contact"].src = "images/menu/contact.gif"

		}

function msover(imageName) {
			if (document.images) {	
				document.images[imageName].src = on[imageName].src;
			}
		}

function msout(imageName) {
			if (document.images) {
	                  			document.images[imageName].src = off[imageName].src
			}	            
		}

