/* ÀÌ¹ÌÁö ¸¶¿ì½º On/Over */
function on_mouse(nam, iurl) {
	swapimg = eval(nam);
	swapimg.src = iurl;
}

function out_mouse(nam, iurl) { 
	swapimg = eval(nam);
	swapimg.src = iurl;
}


/* ÀÌ¹ÌÁö¸¦ ¸¶¿ì½º·Î Å¬¸¯ÇßÀ»¶§ °íÁ¤ */
function data_gubun(a) {
	for (i=1; i<6; i++) {
		tabContent = document.getElementById("data"+i);
		if (tabContent) {
			tabContent.style.display = "none";
		}
	}
	tabContent = document.getElementById("data"+a);
	if (tabContent) {
		tabContent.style.display = "block";
	}
}