<!--Comment tag so old browsers won't see code.

// Preload your images.
// This works best if they're both the same size.
home1 = new Image();
home1.src  = "i/home.jpg";
home2 = new Image();
home2.src  = "i/home_green.jpg";

product1 = new Image();
product1.src  = "i/product.jpg";
product2 = new Image();
product2.src  = "i/product_green.jpg";

technical1 = new Image();
technical1.src  = "i/technical.jpg";
technical2 = new Image();
technical2.src  = "i/technical_green.jpg";

installation1 = new Image();
installation1.src  = "i/installation.jpg";
installation2 = new Image();
installation2.src  = "i/installation_green.jpg";

links1 = new Image();
links1.src  = "i/links.jpg";
links2 = new Image();
links2.src  = "i/links_green.jpg";

faq1 = new Image();
faq1.src  = "i/faq.jpg";
faq2 = new Image();
faq2.src  = "i/faq_green.jpg";

contact1 = new Image();
contact1.src  = "i/contact.jpg";
contact2 = new Image();
contact2.src  = "i/contact_green.jpg";

function switchimage(imgDocID,imgObjName) 
{
	document[imgDocID].src = eval(imgObjName + ".src");
}

//End comment tag. Copy this line exactly.-->

