<!--
// 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 ### 
	img0on = new Image(); 
	img0on.src = "images/nav_home_on.gif";
   	img0off = new Image(); 
   	img0off.src = "images/nav_home.gif";


	img1on = new Image(); 
	img1on.src = "images/nav_ordercenter_on.gif";
   	img1off = new Image(); 
   	img1off.src = "images/nav_ordercenter.gif";


	img2on = new Image(); 
	img2on.src = "images/nav_customerservice_on.gif";
   	img2off = new Image(); 
   	img2off.src = "images/nav_customerservice.gif";


	img3on = new Image(); 
	img3on.src = "images/nav_contact_on.gif";
   	img3off = new Image(); 
   	img3off.src = "images/nav_contact.gif";

	

// ### 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= "#B5BED6";
	o.style.cursor="hand";	
}

function mouseouttr(o){
	o.style.backgroundColor="#FAFAFA";

}

function mouseovertd (o){
	o.style.borderStyle="solid";
	o.style.borderColor="#003399";
	//o.style.borderWidth='0.1mm';
	//o.style.color="#C0C0C0";	
}

function mouseouttd (o){
	//o.style.color="#C0C0C0";
	o.style.borderColor="#FAFAFA";
}


function navovertr (o){
	o.style.backgroundColor= "#FFFFFF";
	o.style.cursor="hand";	
}

function navouttr(o){
	o.style.backgroundColor="#CDCDCD";

}

function navovertd (o){
	o.style.borderStyle="solid";
	o.style.borderColor="#FFFFFF";
	o.style.backgroundColor= "#FFFFFF";
	o.style.borderWidth='0.0mm';
	o.style.color="#FFFFFF";	
}

function navouttd (o){
	//o.style.color="#C0C0C0";
	o.style.borderColor="#CDCDCD";
	o.style.backgroundColor= "#CDCDCD";
}


// -->
