<!--
// 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") {


// ### BEGIN DISPLAY SCRIPT IMAGES ### 

	menu1on = new Image(); 
	menu1on.src = "images/nav/banner_on_02.jpg";
   	menu1off = new Image(); 
   	menu1off.src = "images/nav/banner_02.jpg";	
   	
	menu2on = new Image(); 
	menu2on.src = "images/nav/banner_on_03.jpg";
   	menu2off = new Image(); 
   	menu2off.src = "images/nav/banner_03.jpg";   	
   	
	menu3on = new Image(); 
	menu3on.src = "images/nav/banner_on_04.jpg";
   	menu3off = new Image(); 
   	menu3off.src = "images/nav/banner_04.jpg";	
   	
	menu4on = new Image(); 
	menu4on.src = "images/nav/banner_on_05.jpg";
   	menu4off = new Image(); 
   	menu4off.src = "images/nav/banner_05.jpg";	
   	
	menu5on = new Image(); 
	menu5on.src = "images/nav/banner_on_06.jpg";
   	menu5off = new Image(); 
   	menu5off.src = "images/nav/banner_06.jpg";	
   	
	menu6on = new Image(); 
	menu6on.src = "images/nav/banner_on_07.jpg";
   	menu6off = new Image(); 
   	menu6off.src = "images/nav/banner_07.jpg";	
   	
	menu7on = new Image(); 
	menu7on.src = "images/nav/banner_on_08.jpg";
   	menu7off = new Image(); 
   	menu7off.src = "images/nav/banner_08.jpg";	

// ### END DISPLAY SCRIPT IMAGES ### 
    }

// 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");
    }
}


function mouseovertr (o){
	o.style.backgroundColor= "#C0C0C0";
	o.style.cursor="hand";	
}

function mouseouttr(o){
	o.style.backgroundColor="#E0E0E0"

}

function mouseovertd (o){
	o.style.borderStyle="solid"
	o.style.borderColor="#ffffff"
	o.style.color="#C0C0C0"	
}

function mouseouttd (o){
	o.style.color="#C0C0C0"
	o.style.borderColor="#E0E0E0"
}


// -->
