 
<!-- // Hide javaScript code from non javascript capable browsers:

Browser = navigator.appName;
Version = parseInt(navigator.appVersion);

if (Browser == "Netscape")
{
        if(Version >= 3) 
        { 
                ScriptAware = 1;
        }
        else 
        { 
                ScriptAware =0; 
        }
}
else if (Browser == "Microsoft Internet Explorer")
{
        if (Version >= 4) 
        {
                ScriptAware = 1;
        }
        else 
        { 
                ScriptAware = 0; 
        }
}
else 
{ 
        ScriptAware = 0;
}

if (ScriptAware == 1)
{
        
        home_on = new Image();
        home_on.src = "images/home_on.jpg";
        home_off = new Image();
        home_off.src = "images/home_off.jpg";
        
        next_on = new Image();
        next_on.src = "images/next_on.gif";
        next_off = new Image();
        next_off.src = "images/next_off.gif";
        
        back_on = new Image();
        back_on.src = "images/back_on.gif";
        back_off = new Image();
        back_off.src = "images/back_off.gif";
        
        show_on = new Image();
        show_on.src = "images/show_on.jpg";
        show_off = new Image();
        show_off.src = "images/show_off.jpg";
        
        slat_on = new Image();
        slat_on.src = "images/slat_on.jpg";
        slat_off = new Image();
        slat_off.src = "images/slat_off.jpg";
        
        shel_on = new Image();
        shel_on.src = "images/shel_on.jpg";
        shel_off = new Image();
        shel_off.src = "images/shel_off.jpg";
        
        bro_on = new Image();
        bro_on.src = "images/bro_on.jpg";
        bro_off = new Image();
        bro_off.src = "images/bro_off.jpg";
        
        peg_on = new Image();
        peg_on.src = "images/peg_on.jpg";
        peg_off = new Image();
        peg_off.src = "images/peg_off.jpg";
        
        fash_on = new Image();
        fash_on.src = "images/fash_on.jpg";
        fash_off = new Image();
        fash_off.src = "images/fash_off.jpg";
        
        reta_on = new Image();
        reta_on.src = "images/reta_on.jpg";
        reta_off = new Image();
        reta_off.src = "images/reta_off.jpg";
        
        abou_on = new Image();
        abou_on.src = "images/abou_on.jpg";
        abou_off = new Image();
        abou_off.src = "images/abou_off.jpg";
        
        cont_on = new Image();
        cont_on.src = "images/cont_on.jpg";
        cont_off = new Image();
        cont_off.src = "images/cont_off.jpg";
        
        int_on = new Image();
        int_on.src = "images/int_on.jpg";
        int_off = new Image();
        int_off.src = "images/int_off.jpg";
       
          
        }

         // Highlight
 
     function HighlightImage2( htmlImageName, docImageName )
        {
                if (document.images) 
                {
                        whichButtonToHighlight = eval(docImageName + "_on.src");
                        document[htmlImageName].src = whichButtonToHighlight;
                }
        }
        
     function DehighlightImage2( htmlImageName, docImageName )
        {
                if (document.images) 
                {
                        whichButtonToDehighlight = eval(docImageName + "_off.src");
                        document[htmlImageName].src = whichButtonToDehighlight;
                }
        }


//-->

<!-- Two program lines per image to be preloaded

image1 = new Image();
image1.src = "images/save2.jpg";
image2 = new Image();
image2.src = "images/save3.jpg";

// -->

