<!--


	bName = navigator.appName;
	bVer = parseInt(navigator.appVersion);
	if ((bName == "Netscape" && bVer >= 3) ||
	(bName == "Microsoft Internet Explorer" && bVer >= 4)) 	br = "n3";
	else br = "n2";

	if (br == "n3") { 
            img0on = new Image();      
            img0on.src = "img/index_03_on.jpg";
            img1on = new Image();      
            img1on.src = "img/index_05_on.jpg";
            img2on = new Image();      
            img2on.src = "img/index_06_on.jpg"; 
            img3on = new Image();      
            img3on.src = "img/index_08_on.jpg"; 
            img4on = new Image();      
            img4on.src = "img/home_on.jpg";
                                               
            img0off = new Image();      
            img0off.src = "img/index_03.jpg";
            img1off = new Image();      
            img1off.src = "img/index_05.jpg";
            img2off = new Image();      
            img2off.src = "img/index_06.jpg"; 
            img3off = new Image();      
            img3off.src = "img/index_08.jpg"; 
            img4off = new Image();      
            img4off.src = "img/home.jpg";
           
            }

	function imgOn(imgName) {
	if (br == "n3") {
	document[imgName].src = eval(imgName + "on.src");
	}
	}
	function imgOff(imgName) {
	if (br == "n3") {
	document[imgName].src = eval(imgName + "off.src");
	}
	}

// -->