

if (document.images) {            


//give me on....  
img1on = new Image();      
img1on.src = "images/meet_doc_vale_on.gif";

img2on = new Image();
img2on.src = "images/proceedure_explanation_on.gif";

img3on = new Image();
img3on.src = "images/our_lasers_on.gif";

img4on = new Image();
img4on.src = "images/financing_options_on.gif";

img5on = new Image();
img5on.src = "images/faq_on.gif";

img6on = new Image();
img6on.src = "images/contact_on.gif";


//good...now give me off
img1off = new Image(); 
img1off.src = "images/meet_doc_vale_off.gif";   

img2off = new Image();
img2off.src = "images/proceedure_explanation_off.gif";

img3off = new Image();
img3off.src = "images/our_lasers_off.gif";

img4off = new Image();
img4off.src = "images/financing_options_off.gif";

img5off = new Image();
img5off.src = "images/faq_off.gif";

img6off = new Image();
img6off.src = "images/contact_off.gif";



 }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

