function TabSELECTA1(){		window.document.getElementById('tab_schedule').style.display = 'block';	window.document.getElementById('tab_about').style.display = 'none';	window.document.getElementById('tab_news').style.display = 'none';	window.document.getElementById('tab_ttl_schedule').src = 'imgs/tab_schedule_on.gif';	window.document.getElementById('tab_ttl_about').src = 'imgs/tab_about_off.gif';	window.document.getElementById('tab_ttl_news').src = 'imgs/tab_news_off.gif';}function TabSELECTA2(){		//window.document.getElementById('tab_schedule').style.display = 'none';	window.document.getElementById('tab_about').style.display = 'block';	window.document.getElementById('tab_news').style.display = 'none';	//window.document.getElementById('tab_ttl_schedule').src = 'imgs/tab_schedule_off.gif';	window.document.getElementById('tab_ttl_about').src = 'imgs/tab_about_on.gif';	window.document.getElementById('tab_ttl_news').src = 'imgs/tab_news_off.gif';}function TabSELECTA3(){		//window.document.getElementById('tab_schedule').style.display = 'none';	window.document.getElementById('tab_about').style.display = 'none';	window.document.getElementById('tab_news').style.display = 'block';	//window.document.getElementById('tab_ttl_schedule').src = 'imgs/tab_schedule_off.gif';	window.document.getElementById('tab_ttl_about').src = 'imgs/tab_about_off.gif';	window.document.getElementById('tab_ttl_news').src = 'imgs/tab_news_on.gif';}function fav_ON(check_btn) {	if (check_btn.className == 'fav_off') {		check_btn.src = 'imgs/btn_favorite_on.gif';		check_btn.className = 'fav_on';	} else {		check_btn.src = 'imgs/btn_favorite_off.gif';		check_btn.className = 'fav_off';	}}function list_fav_ON(check_btn) {	if (check_btn.className == 'list_fav_off') {		check_btn.src = 'imgs/lineup_index_favorite_on.gif';		check_btn.className = 'list_fav_on';	} else {		check_btn.src = 'imgs/lineup_index_favorite.gif';		check_btn.className = 'list_fav_off';	}}
