// JavaScript Document

function tabSwap(num) {
		if (num == "1") {
			tap_01.style.display='block';
			tap_02.style.display='none';
			tap_03.style.display='none';
			tap_04.style.display='none';
			tap_05.style.display='none';
			menu1.src = "images/match_icon01_on.gif";
			menu2.src = "images/match_icon02_off.gif";
			menu3.src = "images/match_icon03_off.gif";
			menu4.src = "images/match_icon04_off.gif";
			menu5.src = "images/match_icon05_off.gif";
		} else if (num == "2") {
			tap_01.style.display='none';
			tap_02.style.display='block';
			tap_03.style.display='none';
			tap_04.style.display='none';
			tap_05.style.display='none';
			menu1.src = "images/match_icon01_off.gif";
			menu2.src = "images/match_icon02_on.gif";
			menu3.src = "images/match_icon03_off.gif";
			menu4.src = "images/match_icon04_off.gif";
			menu5.src = "images/match_icon05_off.gif";
		} else if (num == "3") {
			tap_01.style.display='none';
			tap_02.style.display='none';
			tap_03.style.display='block';
			tap_04.style.display='none';
			tap_05.style.display='none';
			menu1.src = "images/match_icon01_off.gif";
			menu2.src = "images/match_icon02_off.gif";
			menu3.src = "images/match_icon03_on.gif";
			menu4.src = "images/match_icon04_off.gif";
			menu5.src = "images/match_icon05_off.gif";
		} else if (num == "4") {
			tap_01.style.display='none';
			tap_02.style.display='none';
			tap_03.style.display='none';
			tap_04.style.display='block';
			tap_05.style.display='none';
			menu1.src = "images/match_icon01_off.gif";
			menu2.src = "images/match_icon02_off.gif";
			menu3.src = "images/match_icon03_off.gif";
			menu4.src = "images/match_icon04_on.gif";
			menu5.src = "images/match_icon05_off.gif";
		} else if (num == "5") {
			tap_01.style.display='none';
			tap_02.style.display='none';
			tap_03.style.display='none';
			tap_04.style.display='none';
			tap_05.style.display='block';
			menu1.src = "images/match_icon01_off.gif";
			menu2.src = "images/match_icon02_off.gif";
			menu3.src = "images/match_icon03_off.gif";
			menu4.src = "images/match_icon04_off.gif";
			menu5.src = "images/match_icon05_on.gif";
		}
}
