
 <!--
//This part checks the browser is javascript enabled.
browserName = navigator.appName;
browserVer = parseInt ( navigator.appVersion );
version = "n2";
if ( browserName == "Netscape" && browserVer >= 3 ) version = "n3";
if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) 
version = "e4";
if ( version == "n3" || version == "e4" )
//Now the images are preloaded
{
  blank2 = new Image(106, 68);
  blank2.src = "../_tampabay/images/blank.jpg";
  pic1 = new Image(106, 68);
  pic1.src = "../_tampabay/images/splash1pic.jpg";
   pic2 = new Image(106, 68);
  pic2.src = "../_tampabay/images/splash2pic.jpg";
   pic3 = new Image(106, 68);
  pic3.src = "../_tampabay/images/splash5pic.jpg";
   pic4 = new Image(106, 68);
  pic4.src = "../_tampabay/images/splash7pic.jpg";
   pic5 = new Image(106, 68);
  pic5.src = "../_tampabay/images/splash6pic.jpg";
   pic6 = new Image(106, 68);
  pic6.src = "../_tampabay/images/splash11pic.jpg";
   pic7 = new Image(106, 68);
  pic7.src = "../_tampabay/images/splash7pic.jpg";
   pic8 = new Image(106, 68);
  pic8.src = "../_tampabay/images/splash8pic.jpg";
   pic9 = new Image(106, 68);
  pic9.src = "../_tampabay/images/splash9pic.jpg";
 }
//Now the mouseover functions, providing your browser is ok
function button_on ( imgName )
{
        if ( version == "n3" || version == "e4" )
        {
                butOn = eval ( imgName + "_on.src" );
                document [imgName].src = butOn;
        }
}
function button_off ( imgName )
{
        if ( version == "n3" || version == "e4" )
        {
                butOff = eval ( imgName + "_off.src" );
                document [imgName].src = butOff;
        }
}
// -->

