<!--
function stopError() {
  return true;
}

window.onerror = stopError;




if(document.images){
		function iC(loc,i){
        	document.images['lg'].src = "../img/"+ loc + "/" + i + ".jpg";
			changeColor(i);
        }	
}


function changeColor(i){

document.images['one'].style.borderColor = document.images['two'].style.borderColor = document.images['three'].style.borderColor = document.images['four'].style.borderColor = document.images['five'].style.borderColor = "#FFDD01";
document.images['one'].style.borderWidth = document.images['two'].style.borderWidth = document.images['three'].style.borderWidth = document.images['four'].style.borderWidth = document.images['five'].style.borderWidth = "1px";


	switch(i){
	 case 1:
	 	document.images['one'].style.borderColor="#25408f";
		hide('t2');hide('t3');hide('t4');hide('t5');show('t1');
		 break
	case 2:
	 	document.images['two'].style.borderColor="#25408f";
		hide('t1');hide('t3');hide('t4');hide('t5');show('t2');
		 break
	case 3:
	 	document.images['three'].style.borderColor="#25408f";
		hide('t2');hide('t1');hide('t4');hide('t5');show('t3');
		 break
	case 4:
	 	document.images['four'].style.borderColor="#25408f";
		hide('t2');hide('t3');hide('t1');hide('t5');show('t4');
		 break
	case 5:
	 	document.images['five'].style.borderColor="#25408f";
		hide('t2');hide('t3');hide('t4');hide('t1');show('t5');
		 break
	}
}

var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var NS4 = (bName == "Netscape" && (bVer >= 4 && bVer < 5));
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
var NS3 = (bName == "Netscape" && bVer < 4);
var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
var N6 = (bName == "Netscape" && bVer >= 5);

if (NS4 || IE4 || IE5) {
   if (navigator.appName == "Netscape"){
      layerStyleRef="layer.";
      layerRef="document.layers";
      styleSwitch="";
   }else {
      layerStyleRef="layer.style.";
      layerRef="document.all";
      styleSwitch=".style";
   }
}


function show(layerName){
   if (IE4) { 
     eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
   }	
   if (N6){
   		document.getElementById([layerName]).style.visibility = "visible";
   }
   else{}
}

function hide(layerName){
   if (IE4) { 
     eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
   }	
   if (N6){
   		document.getElementById([layerName]).style.visibility = "hidden";
   }
   else{}
}

//-->