<!--
// 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 ### 
	nav1on = new Image(); 
	nav1on.src = "images/nav/nav_on_01.gif";
   	nav1off = new Image(); 
   	nav1off.src = "images/nav/nav_01.gif";

	nav2on = new Image(); 
	nav2on.src = "images/nav/nav_on_02.gif";
   	nav2off = new Image(); 
   	nav2off.src = "images/nav/nav_02.gif";

	nav3on = new Image(); 
	nav3on.src = "images/nav/nav_on_03.gif";
   	nav3off = new Image(); 
   	nav3off.src = "images/nav/nav_03.gif";

	nav4on = new Image(); 
	nav4on.src = "images/nav/nav_on_04.gif";
   	nav4off = new Image(); 
   	nav4off.src = "images/nav/nav_04.gif";

	nav5on = new Image(); 
	nav5on.src = "images/nav/nav_on_05.gif";
   	nav5off = new Image(); 
   	nav5off.src = "images/nav/nav_05.gif";

	nav6on = new Image(); 
	nav6on.src = "images/nav/nav_on_06.gif";
   	nav6off = new Image(); 
   	nav6off.src = "images/nav/nav_06.gif";   
   	 	   	   		

	button1on = new Image(); 
	button1on.src = "images/b_home_services_on.jpg";
   	button1off = new Image(); 
   	button1off.src = "images/b_home_services.jpg";
   	
	button2on = new Image(); 
	button2on.src = "images/b_home_faqs_on.jpg";
   	button2off = new Image(); 
   	button2off.src = "images/b_home_faqs.jpg";
   	
	button3on = new Image(); 
	button3on.src = "images/b_home_franchise_on.jpg";
   	button3off = new Image(); 
   	button3off.src = "images/b_home_franchise.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 = ""
}	

function navovertr (o){
	o.style.backgroundColor= "#7d6536";
	o.style.cursor="hand";	
	o.style.color="#003264";		
}

function navouttr(o){
	o.style.backgroundColor="#1c608f";

}

function navovertd (o){
	o.style.borderStyle="solid";
	o.style.borderColor="#FFFFFF";
	o.style.backgroundColor= "#7d6536";
	o.style.borderWidth='0.0mm';
	o.style.color="#003264";	
}

function navouttd (o){
	//o.style.color="#C0C0C0";
	o.style.borderColor="#1c608f";
	o.style.backgroundColor= "#1c608f";
}


// -->
