// JavaScript Document
if (document.images) {            
img1on = new Image();           
img1on.src = "images/home_button_on.png"; 
img2on = new Image();           
img2on.src = "images/mission_statement_button_on.png"; 
img3on = new Image();           
img3on.src = "images/contact_button_on.png";
img4on = new Image();           
img4on.src = "images/lotus_blueprint_button_on.gif";
img5on = new Image();    
img5on.src = "images/lotus_bloom_button_on.gif";
img6on = new Image();    
img6on.src = "images/super_coaching_button_on.gif";
img7on = new Image();    
img7on.src = "images/eves_workshops_button_on.gif";
img8on = new Image();    
img8on.src = "images/love_letters_button_on.gif";
img9on = new Image();    
img9on.src = "images/whom_am_i_button_on.gif";
img10on = new Image();    
img10on.src = "images/lotus_blossom_button_on.gif";
img11on = new Image();    
img11on.src = "images/products_button_on.gif";
img12on = new Image();    
img12on.src = "images/guestbook_button_on.gif";
img13on = new Image();    
img13on.src = "images/love_yourself_button_on.gif";
img14on = new Image();    
img14on.src = "images/testimonials_button_on.gif";
img15on = new Image();    
img15on.src = "images/gallery_button_on.gif";




img1off = new Image();           
img1off.src = "images/home_button_off.png"; 
img2off = new Image();           
img2off.src = "images/mission_statement_button_off.png"; 
img3off = new Image();           
img3off.src = "images/contact_button_off.png"; 
img4off = new Image();           
img4off.src = "images/lotus_blueprint_button_off.gif";
img5off = new Image();    
img5off.src = "images/lotus_bloom_button_off.gif";
img6off = new Image();    
img6off.src = "images/super_coaching_button_off.gif";
img7off = new Image();    
img7off.src = "images/eves_workshops_button_off.gif";
img8off = new Image();    
img8off.src = "images/love_letters_button_off.gif";
img9off = new Image();    
img9off.src = "images/whom_am_i_button_off.gif";
img10off = new Image();    
img10off.src = "images/lotus_blossom_button_off.gif";
img11off = new Image();    
img11off.src = "images/products_button_off.gif";
img12off = new Image();    
img12off.src = "images/guestbook_button_off.gif";
img13off = new Image();    
img13off.src = "images/love_yourself_button_off.gif";
img14off = new Image();    
img14off.src = "images/testimonials_button_off.gif";
img15off = new Image();    
img15off.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");        }}
}

