	<!--to hiding script from old browsers
	/*for barbet 5.x*/
	/*Set Up Object*/
	/*êžêžêž*/
	var bAgent = navigator.userAgent;
	var bName = navigator.appName;
	var bPlugins = navigator.plugins;
	var d = document;
	
	function sniffer(){

		/*Object*/
		/*NS4 = 1, IE4 = 2, IE5+,OPERA5,7 = 3, NS6+,SAFARI,OPERA6 = 4, others = 0*/
		this.checkObj = d.all?(d.getElementById?3:2):(d.getElementById?4:(d.layers?1:0));
		this.allObj = ((this.checkObj == 1) || (this.checkObj == 2) || (this.checkObj == 3) || (this.checkObj == 4));
		this.checkObj4 = (d.getElementById && !d.all) ? 1 :0;
		this.checkObj3 = (d.getElementById && d.all) ? 1 :0;
		this.checkObj2 = (d.all && !d.getElementById) ? 1 :0;
		this.checkObj1 = d.layers ? 1 :0;
		
		/*Compat Mode*/
		this.modeStandard = d.compatMode == "CSS1Compat" ? 1 : 0;
		this.modeQuirks = d.compatMode == "BackCompat" ? 1 : 0;
		
		this.WinIE6s = (this.Win && this.IE && this.modeStandard && ((bAgent.indexOf('MSIE 6.',0) != -1) || (bAgent.indexOf('MSIE 7.',0) != -1)));
		this.WinIE6q = (this.Win && this.IE && this.modeQuirks && ((bAgent.indexOf('MSIE 6.',0) != -1) || (bAgent.indexOf('MSIE 7.',0) != -1)));
		
		return this;
	}
	var usr = new sniffer;

	/*CacheImage*/
	if(d.images) {
		dotblank = new Image();
		dotblank.src = "./img/bg/blank.gif";

		totopaout = new Image();
		totopaout.src = "./img/bg/blank.gif";
		totopaovr = new Image();
		totopaovr.src = "./img/bg/blank.gif";
		totopbout = new Image();
		totopbout.src = "./img/bg/blank.gif";
	}

	/*ChangeImage ex.03, 0100, 0201*/
	var imgIdG1 = imgIdS1 = imgIdL1 = imgIdP1 = "";
	var hldIdG1 = hldIdS1 = hldIdL1 = hldIdP1 = "";
	function changeImg(imgName,imgState,idName) {
		if(!idName){
			if(d.images) {
				var stringId0 = imgName.substring(0,4);
				var stringIdG1 = imgName.substring(3,6);
				var stringIdS1 = imgName.substring(3,6);
				var stringIdL1 = imgName.substring(3,8);
				if(((imgState == "out") || (imgState == "ovr")) && (stringId0 == "navl") && (stringIdL1 == imgIdP1)){
					if(imgState == "out"){
						d[imgName].src = eval(imgName + "opt" + ".src");
					}else if(imgState == "ovr"){
						d[imgName].src = eval(imgName + "hlv" + ".src");
					}
				} else if(((imgState == "out") || (imgState == "ovr")) && ((stringId0 == "navg") || (stringId0 == "navs") || (stringId0 == "navl")) && ((stringIdS1 == imgIdG1) || (stringIdS1 == imgIdS1) || (stringIdL1 == imgIdL1))){
					if(imgState == "out"){
						d[imgName].src = eval(imgName + "hld" + ".src");
					}else if(imgState == "ovr"){
						d[imgName].src = eval(imgName + "hlv" + ".src");
					}
				} else {
					d[imgName].src = eval(imgName + imgState + ".src");
				}
			}
		}else if(!!idName){
			if(usr.checkObj == 2 || usr.checkObj == 3 || usr.checkObj == 4){
				d[imgName].src = eval(imgName + imgState + ".src");
			}else if(usr.checkObj == 1){
				d.layers[idName].d[imgName].src = eval(imgName + imgState + ".src");
			}
		}
	}
