<!--
if (document.images) {       //if image object is available     
img1on = new Image();           // MouseOver Images
img1on.src = "images/buttons/home_on.jpg";
img2on = new Image();
img2on.src = "images/buttons/art_on.jpg";
img3on = new Image();
img3on.src = "images/buttons/press_on.jpg";
img4on = new Image();
img4on.src = "images/buttons/contact_on.jpg";


img1off = new Image();                  // MouseOut Images
img1off.src = "images/buttons/home_off.jpg";
img2off = new Image();
img2off.src = "images/buttons/art_off.jpg";
img3off = new Image();
img3off.src = "images/buttons/press_off.jpg";
img4off = new Image();
img4off.src = "images/buttons/contact_off.jpg";
}

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");        }}

//-->