
<!--
var prevPage = "";
var curPage = "";

if (document.images)
{
        
        home_on = new Image();
        home_on.src = "images/nav_home_on.gif";
        home_off = new Image();
        home_off.src = "images/nav_home_off.gif";
        
        info_on = new Image();
        info_on.src = "images/nav_info_on.gif";
        info_off = new Image();
        info_off.src = "images/nav_info_off.gif"; 
        
        info2_on = new Image();
        info2_on.src = "images/nav_info2_on.gif";
        info2_off = new Image();
        info2_off.src = "images/nav_info2_off.gif"; 
        
        info3_on = new Image();
        info3_on.src = "images/nav_info3_on.gif";
        info3_off = new Image();
        info3_off.src = "images/nav_info3_off.gif"; 
        
        info4_on = new Image();
        info4_on.src = "images/nav_info4_on.gif";
        info4_off = new Image();
        info4_off.src = "images/nav_info4_off.gif";
        
        music_on = new Image();
        music_on.src = "images/nav_music_on.gif";
        music_off = new Image();
        music_off.src = "images/nav_music_off.gif"; 
        
        music3_on = new Image();
        music3_on.src = "images/nav_music3_on.gif";
        music3_off = new Image();
        music3_off.src = "images/nav_music3_off.gif"; 
        
        music4_on = new Image();
        music4_on.src = "images/nav_music4_on.gif";
        music4_off = new Image();
        music4_off.src = "images/nav_music4_off.gif"; 
                
        ftp_on = new Image();
        ftp_on.src = "images/nav_ftp_on.gif";
        ftp_off = new Image();
        ftp_off.src = "images/nav_ftp_off.gif"; 
        
        ftp2_on = new Image();
        ftp2_on.src = "images/nav_ftp2_on.gif";
        ftp2_off = new Image();
        ftp2_off.src = "images/nav_ftp2_off.gif";
        
        ftp3_on = new Image();
        ftp3_on.src = "images/nav_ftp3_on.gif";
        ftp3_off = new Image();
        ftp3_off.src = "images/nav_ftp3_off.gif";
        
        object_on = new Image();
        object_on.src = "images/nav_object_on.gif";
        object_off = new Image();
        object_off.src = "images/nav_object_off.gif"; 
        
        photos_on = new Image();
        photos_on.src = "images/nav_photos_on.gif";
        photos_off = new Image();
        photos_off.src = "images/nav_photos_off.gif"; 
        
        contact_on = new Image();
        contact_on.src = "images/nav_contact_on.gif";
        contact_off = new Image();
        contact_off.src = "images/nav_contact_off.gif"; 
        
        contact2_on = new Image();
        contact2_on.src = "images/nav_contact2_on.gif";
        contact2_off = new Image();
        contact2_off.src = "images/nav_contact2_off.gif"; 
        
        contact3_on = new Image();
        contact3_on.src = "images/nav_contact3_on.gif";
        contact3_off = new Image();
        contact3_off.src = "images/nav_contact3_off.gif"; 
        
        contact4_on = new Image();
        contact4_on.src = "images/nav_contact4_on.gif";
        contact4_off = new Image();
        contact4_off.src = "images/nav_contact4_off.gif";
                
        commercial_on = new Image();
        commercial_on.src = "images/nav_commercial_on.gif";
        commercial_off = new Image();
        commercial_off.src = "images/nav_commercial_off.gif"; 
                
        library_on = new Image();
        library_on.src = "images/nav_library_on.gif";
        library_off = new Image();
        library_off.src = "images/nav_library_off.gif"; 
                        
        projects_on = new Image();
        projects_on.src = "images/nav_projects_on.gif";
        projects_off = new Image();
        projects_off.src = "images/nav_projects_off.gif"; 
        
        reel_on = new Image();
        reel_on.src = "images/nav_reel_on.gif";
        reel_off = new Image();
        reel_off.src = "images/nav_reel_off.gif"; 
        
        more_on = new Image();
        more_on.src = "images/nav_more_on.gif";
        more_off = new Image();
        more_off.src = "images/nav_more_off.gif"; 

        
}


function imgOn(itemName)
{
        if (document.images) {
                document[itemName].src = eval(itemName + "_on.src");
        }
}


function imgOff(itemName)
{       
        if (document.images) {
                document[itemName].src = eval(itemName + "_off.src");
        }
}

function changePages(varStr)
{
        prevPage = curPage;
        curPage = varStr;
        if (prevPage != "")
        {
                imgOff(prevPage);
        }
        imgOn(varStr);
        

}




// -->
