﻿if (document.images) {
    topMenu1on = new Image();   topMenu1on.src = "../images/wrpr/community_over.gif"; 
    topMenu2on = new Image();   topMenu2on.src = "../images/wrpr/disease_over.gif"; 
    topMenu3on = new Image();   topMenu3on.src = "../images/wrpr/living_with_over.gif";  
    topMenu4on = new Image();   topMenu4on.src = "../images/wrpr/help_over.gif";
    topMenu5on = new Image();   topMenu5on.src = "../images/wrpr/join_over.gif";
    topMenu6on = new Image();   topMenu6on.src = "../images/wrpr/professionals_over.gif"; 
    topMenu7on = new Image();   topMenu7on.src = "../images/wrpr/news_over.jpg";  
    
    //text + print controls
    img10on = new Image();   img10on.src = "../images/wrpr/btn_size1_over.gif"; 
    img11on = new Image();   img11on.src = "../images/wrpr/btn_size2_over.gif";  
    img12on = new Image();   img12on.src = "../images/wrpr/btn_size3_over.gif";
    img13on = new Image();   img13on.src = "../images/wrpr/btn_print_over.gif";
    img14on = new Image();   img14on.src = "../images/wrpr/btn_email_over.gif"; 
    
    topMenu1off = new Image();  topMenu1off.src = "../images/wrpr/community.gif";
    topMenu2off = new Image();  topMenu2off.src = "../images/wrpr/disease.gif"; 
    topMenu3off = new Image();  topMenu3off.src = "../images/wrpr/living_with.gif";
    topMenu4off = new Image();  topMenu4off.src = "../images/wrpr/help.gif";
    topMenu5off = new Image();  topMenu5off.src = "../images/wrpr/join.gif";
    topMenu6off = new Image();  topMenu6off.src = "../images/wrpr/professionals.gif"; 
    topMenu7off = new Image();  topMenu7off.src = "../images/wrpr/news.jpg";
    
    //text + print controls
    img10off = new Image();  img10off.src = "../images/wrpr/btn_size1.gif"; 
    img11off = new Image();  img11off.src = "../images/wrpr/btn_size2.gif";
    img12off = new Image();  img12off.src = "../images/wrpr/btn_size3.gif";
    img13off = new Image();  img13off.src = "../images/wrpr/btn_print.gif";
    img14off = new Image();  img14off.src = "../images/wrpr/btn_email.gif"; 
    
    // text + print controls selected state
    img10sel = new Image();   img10sel.src = "../images/wrpr/btn_size1_sel.gif"; 
    img11sel = new Image();   img11sel.src = "../images/wrpr/btn_size2_sel.gif";  
    img12sel = new Image();   img12sel.src = "../images/wrpr/btn_size3_sel.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");        
    }
}
function imgHighlight(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName + "sel.src");
    }
}
function highlight(imgName){
    //clear other imgs
    imgOff('img10');
    imgOff('img11');
    imgOff('img12');
    
    //highlight current img
    imgHighlight(imgName);
}