/* --------------------------------------
//
// nikkansports.com  nsTab.js
//
// DATE      : 2008/03/24
// COPYRIGHT : Nikkan Sports News.
// WRITER    : Shinya Nara
//
//
-------------------------------------- */


// -------------------------------------------------------------------
// タブ切り替え
// -------------------------------------------------------------------
function changeTab(tabid, tab_arr, li_arr) {
	for(i = 0; i < tab_arr.length; i++) {
		if(tab_arr[i] == tabid) {
			document.getElementById(tab_arr[i]).style.display = "block";
			document.getElementById(li_arr[i]).className = "current";
		} else {
			if(document.getElementById(tab_arr[i])) {
				document.getElementById(tab_arr[i]).style.display = "none";
				document.getElementById(li_arr[i]).className = "";
			}
		}
	}
}
