
   
       var n3 = false;
             
       home       = new Image();
       home.src   = "home_off.jpg";
       homeon     = new Image();
       homeon.src = "home_on.jpg"; 
       
       mission       = new Image();
       mission.src   = "mission_off.jpg";
       missionon     = new Image();
       missionon.src = "mission_on.jpg";
       
       fleet       = new Image();
       fleet.src   = "fleet_off.jpg";
       fleeton     = new Image();
       fleeton.src = "fleet_on.jpg"; 
       
       about       = new Image();
       about.src   = "about_off.jpg";
       abouton     = new Image();
       abouton.src = "about_on.jpg"; 
       
       services       = new Image();
       services.src   = "services_off.jpg";
       serviceson     = new Image();
       serviceson.src = "services_on.jpg";
       
       contact       = new Image();
       contact.src   = "contact_off.jpg";
       contacton     = new Image();
       contacton.src = "contact_on.jpg"; 
       
       reservations       = new Image();
       reservations.src   = "reservations_off.jpg";
       reservationson     = new Image();
       reservationson.src = "reservations_on.jpg"; 
       
       
              function on3(name)
              {
                  document[name].src = eval(name + "on.src");
              }
           
              function off3(name)
              {
                  document[name].src = eval(name + ".src");
              }
           
              n3 = true;
              function on(name)
              {
                 if (n3)
                    on3(name);
              }
           
              function off(name)
              {
                 if (n3)
                    off3(name);
       }



function Changediv(id,flagit) {
	if (flagit=="1"){
		if (document.layers) document.layers[''+id+''].visibility = "show"
		else if (document.all) document.all[''+id+''].style.visibility ="visible"
		else if (document.getElementById)
		document.getElementById(''+id+'').style.visibility = "visible"
	}
	else
		if (flagit=="0"){
		if (document.layers) document.layers[''+id+''].visibility = "hide"
		else if (document.all) document.all[''+id+''].style.visibility ="hidden"
		else if (document.getElementById)
		document.getElementById(''+id+'').style.visibility = "hidden"
	}
}



function RunhomeIntro()
 {
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="homeIntro" width="400" height="80">\n');
    document.write('<param name="movie" value="banner.swf" />\n');
    document.write('<param name="bgcolor" value="#000000" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<param name="allowscriptaccess" value="samedomain" />\n');   
    document.write('<embed type="application/x-shockwave-flash" name="homeIntro" width="400" height="80" src="banner.swf" \n');
    document.write('bgcolor="#000000" quality="high" swliveconnect="true"  WMODE="transparent" allowscriptaccess="samedomain"> </embed>\n');
    document.write('</object>\n');
}


var theTarget = "_top";

function goThere(){
if(!document.theForm.theMenu.selectedIndex==""){
window.open(document.theForm.theMenu.options[document.theForm.theMenu.selectedIndex].value,theTarget,"");
}
}

