// 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;(128,24)
homeoff.src = "/images/Home0.gif";
homeon = new Image;(128,24)
homeon.src = "/images/Home1.gif";
pricingoff = new Image;(128,24)
pricingoff.src = "/images/PriceList0.gif";
pricingon = new Image;(128,24)
pricingon.src = "/images/PriceList1.gif";
ordersoff = new Image;(130,40)
ordersoff.src = "/images/Orderform0.gif";
orderson = new Image;(130,40)
orderson.src = "/images/Orderform1.gif";
contactoff = new Image;(128,24)
contactoff.src = "/images/Contact0.gif";
contacton = new Image;(128,24)
contacton.src = "/images/Contact1.gif";
catalogoff = new Image;(128,24)
catalogoff.src = "/images/Catalog0.gif";
catalogon = new Image;(128,24)
catalogon.src = "/images/Catalog1.gif";
newsoff = new Image;(128,24)
newsoff.src = "/images/News0.gif";
newson = new Image;(128,24)
newson.src = "/images/News1.gif";
sampleoff = new Image;(128,24)
sampleoff.src = "/images/Samples0.gif";
sampleon = new Image;(128,24)
sampleon.src = "/images/Samples1.gif";
faqsoff = new Image;(128,24)
faqsoff.src = "/images/FAQs0.gif";
faqson = new Image;(128,24)
faqson.src = "/images/FAQs1.gif";
photooff = new Image;(128,24)
photooff.src = "/images/Photo0.gif";
photoon = new Image;(128,24)
photoon.src = "/images/Photo1.gif";


}
// swap images using the cached images
function swap(x, y)
{
   if( compat ) { document.images[x].src=eval(y+'.src'); }

}