﻿////////////////////////////////////////////////////////////////////////////////
// HOVER - SWAP IMAGE

if (document.images) {
    HomePageup       = new Image();
    HomePageup.src   = "Images/home_up.png" ;
    HomePagedown     = new Image() ;
    HomePagedown.src = "Images/home_dn.png" ;

    Galleryup       = new Image();
    Galleryup.src   = "Images/gallery_up.png" ;
    Gallerydown     = new Image() ;
    Gallerydown.src = "Images/gallery_dn.png" ;
    
    Homesup       = new Image();
    Homesup.src   = "Images/HomesForSale_up.png" ;
    Homesdown     = new Image() ;
    Homesdown.src = "Images/HomesForSale_dn.png" ;

    Remodelingup       = new Image();
    Remodelingup.src   = "Images/Remodeling_up.png" ;
    Remodelingdown     = new Image() ;
    Remodelingdown.src = "Images/Remodeling_dn.png" ;

    Financingup       = new Image();
    Financingup.src   = "Images/Financing_up.png" ;
    Financingdown     = new Image() ;
    Financingdown.src = "Images/Financing_dn.png" ;

    Aboutup       = new Image();
    Aboutup.src   = "Images/AboutUs_up.png" ;
    Aboutdown     = new Image() ;
    Aboutdown.src = "Images/AboutUs_dn.png" ;

    Contactup       = new Image();
    Contactup.src   = "Images/Contact_up.png" ;
    Contactdown     = new Image() ;
    Contactdown.src = "Images/Contact_dn.png" ;

}
function buttondown( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "down.src" );
    }
}
function buttonup ( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "up.src" );
    }
}
// END -->
