<!--
if (document.images) {
  residential = new Image();
  residential.src = "/images/residential.jpg";
  residential2 = new Image();
  residential2.src = "/images/residential2.jpg";
  commercial = new Image();
  commercial.src = "/images/commercial.jpg";
  commercial2 = new Image();
  commercial2.src = "/images/commercial2.jpg";
  home = new Image();
  home.src = "/images/home.gif";
  home2 = new Image();
  home2.src = "/images/home2.gif";
  products = new Image();
  products.src = "/images/products.gif";
  products2 = new Image();
  products2.src = "/images/products2.gif";
  about = new Image();
  about.src = "/images/about.gif";
  about2 = new Image();
  about2.src = "/images/about2.gif";
  contact = new Image();
  contact.src = "/images/contact.gif";
  contact2 = new Image();
  contact2.src = "/images/contact2.gif";
}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}
//-->