<!--
// 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/default_on_02.jpg";
   	menu1off = new Image(); 
   	menu1off.src = "images/nav/default_02.jpg";

	menu2on = new Image(); 
	menu2on.src = "images/nav/default_on_03.jpg";
   	menu2off = new Image(); 
   	menu2off.src = "images/nav/default_03.jpg";
   	
	menu3on = new Image(); 
	menu3on.src = "images/nav/default_on_04.jpg";
   	menu3off = new Image(); 
   	menu3off.src = "images/nav/default_04.jpg";
   	
	menu4on = new Image(); 
	menu4on.src = "images/nav/default_on_05.jpg";
   	menu4off = new Image(); 
   	menu4off.src = "images/nav/default_05.jpg";
   	
	menu5on = new Image(); 
	menu5on.src = "images/nav/default_on_06.jpg";
   	menu5off = new Image(); 
   	menu5off.src = "images/nav/default_06.jpg";
   	
	menu6on = new Image(); 
	menu6on.src = "images/nav/default_on_07.jpg";
   	menu6off = new Image(); 
   	menu6off.src = "images/nav/default_07.jpg";
	
	store1on = new Image(); 
	store1on.src = "images/nav/stores_on_01.jpg";
   	store1off = new Image(); 
   	store1off.src = "images/nav/stores_01.jpg";

	store2on = new Image(); 
	store2on.src = "images/nav/stores_on_02.jpg";
   	store2off = new Image(); 
   	store2off.src = "images/nav/stores_02.jpg";

	store3on = new Image(); 
	store3on.src = "images/nav/stores_on_03.jpg";
   	store3off = new Image(); 
   	store3off.src = "images/nav/stores_03.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"
}


// -->

