// Pre-load part

if (document.images) {
    homeover     = new Image() ;
    homeover.src = "images/home_over.gif";
    homeout       = new Image();
    homeout.src   = "images/home_out.gif";
    
    aboutover     = new Image() ;
    aboutover.src = "images/about_over.gif";
    aboutout       = new Image();
    aboutout.src   = "images/about_out.gif";
    
    galleryover     = new Image() ;
    galleryover.src = "images/gallery_over.gif";
    galleryout       = new Image();
    galleryout.src   = "images/gallery_out.gif";
    
    productsover     = new Image() ;
    productsover.src = "images/products_over.gif";
    productsout       = new Image();
    productsout.src   = "images/products_out.gif";
    
    financingover     = new Image() ;
    financingover.src = "images/financing_over.gif";
    financingout       = new Image();
    financingout.src   = "images/financing_out.gif";
    
    contactover     = new Image() ;
    contactover.src = "images/contact_over.gif";
    contactout       = new Image();
    contactout.src   = "images/contact_out.gif";
    
    pressover     = new Image() ;
    pressover.src = "images/press_over.jpg";
    pressout       = new Image();
    pressout.src   = "images/press_out.jpg";
    }
    
function imgOver(imgName)
{
    if (document.images) {
      document[imgName].src = eval(imgName + "over.src");
    }
}
function imgOut (imgName)
{
    if (document.images) {
      document[imgName].src = eval(imgName + "out.src");
    }
}
