<!--
if (document.images) {       //if image object is available     
img1on = new Image();           // MouseOver Images
img1on.src = "images/product_1b_over.jpg";
img2on = new Image();
img2on.src = "images/product_4b_over.jpg";
img3on = new Image();
img3on.src = "images/product_4c_over.jpg";
img4on = new Image();
img4on.src = "images/product_4d_over.jpg";
img5on = new Image();
img5on.src = "images/product_4e_over.jpg";


img1off = new Image();                  // MouseOut Images
img1off.src = "images/product_1b.jpg";
img2off = new Image();
img2off.src = "images/product_4b.jpg";
img3off = new Image();
img3off.src = "images/product_4c.jpg";
img4off = new Image();
img4off.src = "images/product_4d.jpg";
img5off = new Image();
img5off.src = "images/product_4e.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");        }}

//-->