// Top Menu
function top2menuView(a) // Top 2 Menu
{
	if(this.id){
		eidStr = this.id;
		eidNum=eidStr.substring(eidStr.lastIndexOf("m",eidStr.length)+1,eidStr.length);
		a = parseInt(eidNum);
	}
	top2menuHideAll();
	top1Menu = document.getElementById("top1m"+a);
	top2Menu = document.getElementById("top2m"+a);
	if(a<10){ann='0'+a;} else {ann=''+a;}
	if (a=0) { //Main 2 Menu Open
	} else {
		if (top1Menu) {
			top1Menu.getElementsByTagName("img")[0].src="http://tour.busan.go.kr/kor/images/topm" + ann + "on.gif";
			if (top2Menu) { top2Menu.style.display = 'inline'; }
		}
	}
}
var num;
function top2menuHide(a) // 2 Menu Close
{
	if(this.id){
		eidStr = this.id;
		eidNum=eidStr.substring(eidStr.lastIndexOf("m",eidStr.length)+1,eidStr.length);
		a = parseInt(eidNum);
	}

	if(num == null){
		num = a;
	}

	top2menuHideAll();
	top1Menu = document.getElementById("top1m"+a);
	top2Menu = document.getElementById("top2m"+a);
	top1MenuCurr = document.getElementById("top1m"+num);
	top2MenuCurr = document.getElementById("top2m"+num);
	if(a<10){ann='0'+a;} else {ann=''+a;}
	if (top1Menu) {
		top1Menu.getElementsByTagName("img")[0].src="http://tour.busan.go.kr/kor/images/topm" + ann + ".gif";
		if (top2Menu) { top2Menu.style.display = 'none'; }
		if (top1MenuCurr) {
			top1MenuCurr.getElementsByTagName("img")[0].src = "http://tour.busan.go.kr/kor/images/topm0" + num + "on.gif";
		}
		if (top2MenuCurr) { top2MenuCurr.style.display = 'inline'; }
	}
	top2menuView(a)
}
function top2menuHideAll() // 2 Menu All Close
{
	top1menuEl = document.getElementById("top1menu").childNodes;
	for (i=1;i<=top1menuEl.length;i++)
	{
		top1Menu = document.getElementById("top1m"+i);
		top2Menu = document.getElementById("top2m"+i);
		if(i<10){inn='0'+i;} else {inn=''+i;}
		if (top1Menu) {
			top1Menu.getElementsByTagName("img")[0].src="http://tour.busan.go.kr/kor/images/topm" + inn + ".gif";
			if (top2Menu) { top2Menu.style.display = 'none'; }
		}
	}
}

function initTopMenu() { 
 	top1menuEl = document.getElementById("top1menu").childNodes;
		for (i=1;i<=top1menuEl.length;i++)
	{
		top1Menu = document.getElementById("top1m"+i);
		top2Menu = document.getElementById("top2m"+i);
		if (top1Menu) {
			top1Menu.onmouseover = top1Menu.onfocus = top2menuView;
			top1Menu.onmouseout = top2menuHide;
			if (top2Menu) { 
				top2Menu.onmouseover = top2Menu.onfocus = top2menuView;
				top2Menu.onmouseout = top2menuHide;
			}
		
		}
	}
}



// Top Menu All
//ex) tabOn(1,1);
moreLink = new Array(6);
moreClick = new Array(6);
for (i=0;i<6;i++) {
	moreLink[i] = new Array(6);
	moreClick[i] = new Array(6);
}
moreLink[0][0]="#n"; moreClick[0][0]=""; //
moreLink[0][1]="#n"; moreClick[0][1]=""; //
moreLink[0][2]="#n"; moreClick[0][2]=""; //
moreLink[1][0]="#n"; moreClick[1][0]=""; //
moreLink[1][1]="#n"; moreClick[1][1]=""; //
moreLink[1][2]="#n"; moreClick[1][2]=""; //
moreLink[1][3]="#n"; moreClick[1][3]=""; //

function tabOn(tabid,a) {
	for (i=1;i<=10;i++) {
		if(i<10){inn="0"+i;} else {inn=""+i;}
		tabMenu = document.getElementById("tab"+tabid+"m"+i);
		tabContent = document.getElementById("tab"+tabid+"c"+i);
		if (tabMenu) { //°´Ã¼°¡Á¸ÀçÇÏ¸é
			if (tabMenu.tagName=="IMG") { tabMenu.src="http://tour.busan.go.kr/kor/m_img/"+"tab"+inn+".gif"; } // Imgs
			if (tabMenu.tagName=="A") {  
				tabMenu.style.background="transparent url(http://tour.busan.go.kr/kor/im_img/tab"+tabid+"mbg.gif) no-repeat";
				tabMenu.style.padding="1px 0 0 0";
				tabMenu.style.fontWeight="normal";
				}
		}
		if (tabContent) { tabContent.style.display="none"; }
	}
	if(a<10){ann="0"+a;} else {ann=""+a;}
	tabMenu = document.getElementById("tab"+tabid+"m"+a);
	tabContent = document.getElementById("tab"+tabid+"c"+a);
//	alert(tabMenu.tagName);
	if (tabMenu) { // obj
		if (tabMenu.tagName=="IMG") { tabMenu.src="http://tour.busan.go.kr/kor/m_img/"+"tab"+ann+"_on.gif"; } //ÀÌ¹ÌÁöÀÏ¶§
		if (tabMenu.tagName=="A") { 
			tabMenu.style.background="transparent url(http://tour.busan.go.kr/kor/m_img/tab"+tabid+"mbgon.gif) no-repeat";
			tabMenu.style.padding="2px 0 0 0";
			tabMenu.style.fontWeight="bold";
			}
	}
	if (tabContent) { tabContent.style.display="block"; }
	tabMore = document.getElementById("tab"+tabid+"more");
	if (tabMore) { 
		tabMore.href = moreLink[tabid-1][a-1];
		tabMore.onclick = moreClick[tabid-1][a-1];
	}
}



// open & Close
//ex) displayOff('idName','idName'); displayOn('idName','idName'); 
function displayOn() {
	var i,j,a=displayOn.arguments;
	for(i=0;i<a.length;i++) {
		obj = document.getElementById(a[i]);
		if (obj) { obj.style.display = "block"; }
	}
}
function displayOff() {
	var i,j,a=displayOff.arguments;
	for(i=0;i<a.length;i++) {
		obj = document.getElementById(a[i]);
		if (obj) { obj.style.display = "none"; }
	}
}


function initTop3Menu(){ 
	for (var i=1;i<=11;i++){
		for (var j=1;j<=11;j++){
			var top2MenuLi = document.getElementById("top2m"+i+"m"+j);
			var top3MenuUl = document.getElementById("top3m"+i+"m"+j);
			if(top2MenuLi){
				var top2MenuLiA = top2MenuLi.getElementsByTagName("a")[0];
				if(top2MenuLiA){
					top2MenuLiA.onmouseover = top2MenuLiA.onfocus = function(){
						this.style.background = "url(http://tour.busan.go.kr/kor/m_img/top2mbgon.gif) no-repeat 50% 100%";
						var top3MenuUl = this.parentNode.getElementsByTagName("ul")[0];
						if(top3MenuUl){ top3MenuUl.style.display = "block"; }
						var selectbugfix = document.getElementById("selectbugfix");
						if(selectbugfix) selectbugfix.style.display="block";
					}
					top2MenuLiA.onmouseout = function(){
						this.style.background = "";
						var top3MenuUl = this.parentNode.getElementsByTagName("ul")[0];
						if(top3MenuUl){ top3MenuUl.style.display = "none"; }
						var selectbugfix = document.getElementById("selectbugfix");
						if(selectbugfix) selectbugfix.style.display="none";
					}
				}
			}
			if(top3MenuUl){
				top3MenuUl.onmouseover = top3MenuUl.onfocus = function(){
					var top2MenuLiA = this.parentNode.getElementsByTagName("a")[0];
					top2MenuLiA.style.background = "url(http://tour.busan.go.kr/kor/m_img/top2mbgon.gif) no-repeat 50% 100%";
					this.style.display = "block";
					var selectbugfix = document.getElementById("selectbugfix");
					if(selectbugfix) selectbugfix.style.display="block";
				}
				top3MenuUl.onmouseout = function(){
					var top2MenuLiA = this.parentNode.getElementsByTagName("a")[0];
					top2MenuLiA.style.background = "";
					this.style.display = "none";
					var selectbugfix = document.getElementById("selectbugfix");
					if(selectbugfix) selectbugfix.style.display="none";
				}
				var top3MenuUlLis = top3MenuUl.getElementsByTagName("li");
				top3MenuUlLis[0].className="first";
				top3MenuUlLis[top3MenuUlLis.length-1].className="last";
			}
		}
	}
}

