// JavaScript Document// preload navigation images:function preloadImages() {		pb_on.src = "/images/nav/pb_on.gif";	pb_off.src = "/images/nav/pb_off.gif";			bizserv_on.src = "/images/nav/bizserv_on.gif";	bizserv_off.src = "/images/nav/bizserv_off.gif";				wm_on.src = "/images/nav/wm_on.gif";	wm_off.src = "/images/nav/wm_off.gif";					insur_on.src = "/images/nav/insur_on.gif";	insur_off.src = "/images/nav/insur_off.gif";}	if (document.images) {      pb_on = new Image();   pb_on.src = "/images/nav/pb_on.gif";   pb_off = new Image();   pb_off.src = "/images/nav/pb_off.gif";         bizserv_on = new Image();   bizserv_on.src = "/images/nav/bizserv_on.gif";   bizserv_off = new Image();   bizserv_off.src =  "/images/nav/bizserv_off.gif";      wm_on = new Image();   wm_on.src = "/images/nav/wm_on.gif";   wm_off = new Image();   wm_off.src = "/images/nav/wm_off.gif";      insur_on = new Image();   insur_on.src = "/images/nav/insur_on.gif";   insur_off = new Image();   insur_off.src = "/images/nav/insur_off.gif";} function swapImage(imgName,newImage) {   if (document.images) {      eval('document.' + imgName + '.src = ' + newImage + '.src');   }}function init(){isNS4 = (document.layers) ? true : false;isIE4 = (document.all && !document.getElementById) ? true : false;isIE5 = (document.all && document.getElementById) ? true : false;isNS6 = (!document.all && document.getElementById) ? true : false;			if (isNS4){		   layerRef = "document.layers";		   styleSwitch="";		}		else if (isIE4) {		   layerRef = "document.all";		   styleSwitch=".style";		}		else if (isIE5 || isNS6) {		   layerRef = "document.getElementById";		   styleSwitch=".style";		}				//wipeLeft('loadingBG');		//hideLayer('header');		//hideLayer('msg');temp=0;	}//GENERAL FUNCTIONS	function showLayer(layerName){		clearTimeout(temp);		var a = showLayer.arguments;		for (i=0; i<a.length; i++) {				//alert(layerRef+'("'+a[i]+'")'+'.style.visibility="visible"');			if (isIE5 || isNS6) {	   		eval(layerRef+'("'+a[i]+'")'+styleSwitch+'.visibility="visible"');			}else{			eval(layerRef+'["'+a[i]+'"]'+styleSwitch+'.visibility="visible"');			}		}		temp=setTimeout('hideLayer("'+layerName+'")',3000);	}		function hideLayer(){		var a = hideLayer.arguments;		//alert(hideLayer.arguments);  		for (i=0; i<a.length; i++) {    	//alert(a[i]);			if (isIE5 || isNS6) {	   		eval(layerRef+'("'+a[i]+'")'+styleSwitch+'.visibility="hidden"');			} else{			eval(layerRef+'["'+a[i]+'"]'+styleSwitch+'.visibility="hidden"');			}		}	}