<!--
// 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/banner_on_01.jpg";
   	nav1off = new Image(); 
   	nav1off.src = "images/nav/banner_01.jpg";

	nav2on = new Image(); 
	nav2on.src = "images/nav/banner_on_02.jpg";
   	nav2off = new Image(); 
   	nav2off.src = "images/nav/banner_02.jpg";

	nav3on = new Image(); 
	nav3on.src = "images/nav/banner_on_03.jpg";
   	nav3off = new Image(); 
   	nav3off.src = "images/nav/banner_03.jpg";

	nav4on = new Image(); 
	nav4on.src = "images/nav/banner_on_04.jpg";
   	nav4off = new Image(); 
   	nav4off.src = "images/nav/banner_04.jpg";

	nav5on = new Image(); 
	nav5on.src = "images/nav/banner_on_05.jpg";
   	nav5off = new Image(); 
   	nav5off.src = "images/nav/banner_05.jpg";

	nav6on = new Image(); 
	nav6on.src = "images/nav/banner_on_06.jpg";
   	nav6off = new Image(); 
   	nav6off.src = "images/nav/banner_06.jpg";   
   	
	nav7on = new Image(); 
	nav7on.src = "images/nav/banner_on_07.jpg";
   	nav7off = new Image(); 
   	nav7off.src = "images/nav/banner_07.jpg";   
   	
	nav8on = new Image(); 
	nav8on.src = "images/nav/banner_on_08.jpg";
   	nav8off = new Image(); 
   	nav8off.src = "images/nav/banner_08.jpg";   	   	   	   		

	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 = ""
}	

// -->
