<!--
        var current_direction = 'FORWARD';
        var laston = 'home';
        var gotonum = null;
        var running = false;
        var first = true;
        var mouseout = false;
        var mouseoutinc = false;
        var endTime = null;
        var timerID = null    
        var NewtimerId = null;  
        var  theNum = 0;  
        var curNum;
        browserName = navigator.appName;
        browserVer = parseInt(navigator.appVersion);


 if (browserName == "Netscape" && browserVer >= 3  && browserVer < 5 || browserName == "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
        else version = "other";

             
 if (version == "n3") { 

             homeon = new Image(120, 30);
             homeon.src = "homeon.gif";
             homeoff = new Image(120, 30);
             homeoff.src = "homeoff.gif";  
 }	


function select(imgName) {
       if (version == "n3") {
        document [imgName].src = eval(imgName + "on.src");
       }
        // turn off the last image to be hilited
        // if it is not the current (same) image.       
        if (laston != imgName) {
        deselect(laston); 
        } 
                
        // set current image to last image hilited
        laston = imgName;
        
}      


function deselect(imgName) {
        if (version == "n3") {
        document [imgName].src = eval(imgName + "off.src");
        }
 }        
  

        // end JavaScript-->