<!--
if (document.images){                
               
               toc1on = new Image;       
               toc1on.src = "img/btn_home_on.gif";     
               toc2on = new Image;       
               toc2on.src = "img/btn_consult_on.gif";      
               toc3on = new Image;
               toc3on.src = "img/btn_wellness_on.gif";
               toc4on = new Image;
               toc4on.src = "img/btn_corpwell_on.gif";
               toc5on = new Image;
               toc5on.src = "img/btn_whatsnew_on.gif";
               toc6on = new Image;
               toc6on.src = "img/btn_about_on.gif";
               toc7on = new Image;
               toc7on.src = "img/btn_book_on.gif";
               toc8on = new Image;
               toc8on.src = "img/btn_whatis_on.gif";
               toc9on = new Image;
               toc9on.src = "img/btn_close_on.gif";
               toc10on = new Image;
               toc10on.src = "img/btn_enter_on.gif";
               toc11on = new Image;
               toc11on.src = "img/btn_contact_on.gif";

			   toc1off = new Image;       
               toc1off.src = "img/btn_home_off.gif";  
               toc2off = new Image;       
               toc2off.src = "img/btn_consult_off.gif";      
               toc3off = new Image;
               toc3off.src = "img/btn_wellness_off.gif";
               toc4off = new Image;
               toc4off.src = "img/btn_corpwell_off.gif";
               toc5off = new Image;
               toc5off.src = "img/btn_whatsnew_off.gif";
               toc6off = new Image;
               toc6off.src = "img/btn_about_off.gif";
               toc7off = new Image;
               toc7off.src = "img/btn_book_off.gif";
               toc8off = new Image;
               toc8off.src = "img/btn_whatis_off.gif";
               toc9off = new Image;
               toc9off.src = "img/btn_close_off.gif";
               toc10off = new Image;
               toc10off.src = "img/btn_enter_off.gif";
               toc11off = new Image;
               toc11off.src = "img/btn_contact_off.gif";
              
        }

function img_act(imgName) {
        if (document.images) {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
}

function img_inact(imgName) {
        if (document.images) {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }
}

// -->

