<!--
// 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/nav_on_01.jpg";
   	menu1off = new Image(); 
   	menu1off.src = "../images/nav/nav_01.jpg";	
   	
	menu2on = new Image(); 
	menu2on.src = "../images/nav/nav_on_02.jpg";
   	menu2off = new Image(); 
   	menu2off.src = "../images/nav/nav_02.jpg";   	
   	
	menu3on = new Image(); 
	menu3on.src = "../images/nav/nav_on_03.jpg";
   	menu3off = new Image(); 
   	menu3off.src = "../images/nav/nav_03.jpg";	
   	
	menu4on = new Image(); 
	menu4on.src = "../images/nav/nav_on_04.jpg";
   	menu4off = new Image(); 
   	menu4off.src = "../images/nav/nav_04.jpg";	
   	
	menu5on = new Image(); 
	menu5on.src = "../images/nav/nav_on_05.jpg";
   	menu5off = new Image(); 
   	menu5off.src = "../images/nav/nav_05.jpg";	
   	
	menu6on = new Image(); 
	menu6on.src = "../images/nav/nav_on_06.jpg";
   	menu6off = new Image(); 
   	menu6off.src = "../images/nav/nav_06.jpg";	
   	
	menu7on = new Image(); 
	menu7on.src = "../images/nav/nav_on_07.jpg";
   	menu7off = new Image(); 
   	menu7off.src = "../images/nav/nav_07.jpg";	


	table1on = new Image(); 
	table1on.src = "images/b_table_01_on.gif";
   	table1off = new Image(); 
   	table1off.src = "images/b_table_01.gif";


	table2on = new Image(); 
	table2on.src = "images/b_table_02_on.gif";
   	table2off = new Image(); 
   	table2off.src = "images/b_table_02.gif";


	button1on = new Image(); 
	button1on.src = "images/pub_sign_on.jpg";
   	button1off = new Image(); 
   	button1off.src = "images/pub_sign.jpg";
   	
	button2on = new Image(); 
	button2on.src = "images/b_hootie_on.jpg";
   	button2off = new Image(); 
   	button2off.src = "images/b_hootie.jpg";   	
   	
   	
	album1on = new Image(); 
	album1on.src = "images/b_album_on.jpg";
   	album1off = new Image(); 
   	album1off.src = "images/b_album.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"
}

function clearDefault(el) {
	if (el.defaultValue==el.value) el.value = ""
}	


// -->
