if(document.images) {
	
	productson = new Image();
	productson.src = "/images/nav/products_on.gif";
	productsoff = new Image();
	productsoff.src = "/images/nav/products.gif";
		
	testimonialson = new Image();
	testimonialson.src = "/images/nav/testimonials_on.gif";
	testimonialsoff = new Image();
	testimonialsoff.src = "/images/nav/testimonials.gif";
	
	producthistoryon = new Image();
	producthistoryon.src = "/images/nav/producthistory_on.gif";
	producthistoryoff = new Image();
	producthistoryoff.src = "/images/nav/producthistory.gif";
	
	contacton = new Image();
	contacton.src = "/images/nav/contact_on.gif";
	contactoff = new Image();
	contactoff.src = "/images/nav/contact.gif";
	
	disclaimeron = new Image();
	disclaimeron.src = "/images/nav/disclaimer_on.gif";
	disclaimeroff = new Image();
	disclaimeroff.src = "/images/nav/disclaimer.gif";
	
	faqon = new Image();
	faqon.src = "/images/nav/faq_on.gif";
	faqoff = new Image();
	faqoff.src = "/images/nav/faq.gif";
}

function jivein(imageName)
{
	if(document.images)
	{
		document[imageName].src = eval(imageName + "on.src");
	}
}

function jiveout(imageName)
{
	if(document.images)
	{
		document[imageName].src = eval(imageName + "off.src");
	}
}
