<!--
// JavaScript Document
//Hiding script from old browsers
// Netscape 3.0 compatibility test (for javascript image swapping)
compat = false;
if( parseInt( navigator.appVersion ) >= 3 ) { compat = true; }
// cache images for quick swapping
if( compat )
{
homeoff = new Image;
homeoff.src = "images/home.gif";
homeon = new Image;
homeon.src = "images/home2.gif";
faqoff = new Image;
faqoff.src = "images/faq.gif";
faqon = new Image;
faqon.src = "images/faq2.gif";
contactoff = new Image;
contactoff.src = "images/contact.gif";
contacton = new Image;
contacton.src = "images/contact2.gif";
directionsoff = new Image;
directionsoff.src = "images/directions.gif";
directionson = new Image;
directionson.src = "images/directions2.gif";
paymentoff = new Image;
paymentoff.src = "images/payment.gif";
paymenton = new Image;
paymenton.src = "images/payment2.gif";
}

// swap images using the cached images

function glow(x, y)
{
   if( compat ) { document.images[x].src=eval(y+'.src'); }
}
//-->
	