<!--

// Detect if browser is Netscape 3 + or IE 4 +.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";

// Create image objects, preload all active and inactive images.
    if (br== "n3") { 
	img0on = new Image();          // Create four image objects for the 
    img0on.src = "on_home.gif";  // active images; the images displayed
    img1on = new Image();          // Create four image objects for the 
    img1on.src = "on_aboutus.gif";  // active images; the images displayed
    img2on = new Image();          // Create four image objects for the 
    img2on.src = "on_photogallery.gif";
	 img3on = new Image();          // Create four image objects for the 
    img3on.src = "on_fishingseasons.gif";
	 img4on = new Image();          // Create four image objects for the 
    img4on.src = "on_directions.gif";
	 img5on = new Image();          // Create four image objects for the 
    img5on.src = "on_worldclass.gif";
	img6on = new Image();          // Create four image objects for the 
    img6on.src = "on_contact.gif";
	
	 img0off = new Image();          // Create four image objects for the 
    img0off.src = "off_home.gif"; // inactive images; the images 
	img1off = new Image();          // Create four image objects for the 
    img1off.src = "off_aboutus.gif"; // inactive images; the images 
    img2off = new Image();          // Create four image objects for the 
    img2off.src = "off_photogallery.gif";
    img3off = new Image();          // Create four image objects for the 
    img3off.src = "off_fishingseasons.gif";
	img4off = new Image();          // Create four image objects for the 
    img4off.src = "off_directions.gif";
	img5off = new Image();          // Create four image objects for the 
    img5off.src = "off_worldclass.gif";
	img6off = new Image();          // Create four image objects for the 
    img6off.src = "off_contact.gif";
	}

// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}

// -->




	
