
function createRollovers(image_root_path) {

    setImageRootPath(image_root_path);

    /*
    
        link id
        status text on rollover
        status text on rollout
        [image id, active image file path, inactive image file path]
        
        ****
        
        - file paths are relative to the path as passed in to this function
        
        - one link can trigger more than one rollover, include
          another           
            [image id, active image file path, inactive image file path]
    
        - if a link id is not found, the rollover will be silently skipped;
          useful for doing menus etc. with already active elements          
    
    */





createRollover("sally", "sally", "",
["nav_sally", "_img/a_sally.gif", "_img/s_sally.gif"]);

createRollover("profile", "profile", "",
["nav_profile", "_img/nav/a_profile.gif", "_img/nav/s_profile.gif"]);

createRollover("gallery", "gallery", "",
["nav_gallery", "_img/nav/a_gallery.gif", "_img/nav/s_gallery.gif"]);

createRollover("books", "books", "",
["nav_books", "_img/nav/a_books.gif", "_img/nav/s_books.gif"]);

createRollover("play", "play", "",
["nav_play", "_img/nav/a_play.gif", "_img/nav/s_play.gif"]);

createRollover("process", "process", "",
["nav_process", "_img/nav/a_process.gif", "_img/nav/s_process.gif"]);

createRollover("contact", "contact", "",
["nav_contact", "_img/nav/a_contact.gif", "_img/nav/s_contact.gif"]);

createRollover("submit", "submit", "",
["nav_submit", "_img/nav/a_submit.gif", "_img/nav/s_submit.gif"]);

}