
if (document.images) {       //if image object is available     
img1on = new Image();           // MouseOver Images
img1on.src = "../images/aboutus-button-on.gif"; 
img2on = new Image();
img2on.src = "../images/exhibits-button-on.gif";  
img3on = new Image();
img3on.src = "../images/programs-button-on.gif";
img4on = new Image();
img4on.src = "../images/support-button-on.gif";
img5on = new Image();
img5on.src = "../images/shop-button-on.gif";  
img6on = new Image();
img6on.src = "../images/calendar-button-on.gif";
img7on = new Image();
img7on.src = "../images/press-button-on.gif";
img8on = new Image();
img8on.src = "images/about-overview-button-on.gif";
img9on = new Image();
img9on.src = "images/about-defining-button-on.gif";
img10on = new Image();
img10on.src = "images/about-planavisit-button-on.gif";
img11on = new Image();
img11on.src = "images/about-redstone-button-on.gif";
img12on = new Image();
img12on.src = "images/about-contactus-button-on.gif";
img13on = new Image();
img13on.src = "images/about-facility-button-on.gif";
img14on = new Image();
img14on.src = "images/about-job-button-on.gif";
img15on = new Image();
img15on.src = "images/about-mojos-button-on.gif";
img16on = new Image();
img16on.src = "images/about-centro-button-on.gif";
img17on = new Image();
img17on.src = "../images/contactus-button-on.gif";
img18on = new Image();
img18on.src = "../images/home-button-on.gif";
imgRentalson = new Image();
imgRentalson.src = "../images/rentals-button-on.gif";
imgGalleryon = new Image();
imgGalleryon.src = "../images/gallery-button-on.gif"


img1off = new Image();                  // MouseOut Images
img1off.src = "../images/aboutus-button-off.gif"; 
img2off = new Image();          
img2off.src = "../images/exhibits-button-off.gif";
img3off = new Image();
img3off.src = "../images/programs-button-off.gif";
img4off = new Image();
img4off.src = "../images/support-button-off.gif";
img5off = new Image();          
img5off.src = "../images/shop-button-off.gif";
img6off = new Image();
img6off.src = "../images/calendar-button-off.gif";
img7off = new Image();
img7off.src = "../images/press-button-off.gif";
img8off = new Image();
img8off.src = "images/about-overview-button-off.gif";
img9off = new Image();
img9off.src = "images/about-defining-button-off.gif";
img10off = new Image();
img10off.src = "images/about-planavisit-button-off.gif";
img11off = new Image();
img11off.src = "images/about-redstone-button-off.gif";
img12off = new Image();
img12off.src = "images/about-contactus-button-off.gif";
img13off = new Image();
img13off.src = "images/about-facility-button-off.gif";
img14off = new Image();
img14off.src = "images/about-job-button-off.gif";
img15off = new Image();
img15off.src = "images/about-mojos-button-off.gif";
img16off = new Image();
img16off.src = "images/about-centro-button-off.gif";
img17off = new Image();
img17off.src = "../images/contactus-button-off.gif";
img18off = new Image();
img18off.src = "../images/home-button-off.gif";
imgRentalsoff = new Image();
imgRentalsoff.src = "../images/rentals-button-off.gif";
imgGalleryoff= new Image();
imgGalleryoff.src = "../images/gallery-button-off.gif";


function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");        }}
                        
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");        }}
}

