/*

nikkansports.com ＭＬＢプレーオフ2007 config.js

DATE      : 2007/09/13
COPYRIGHT : Nikkan Sports News.
WRITER    : Chiaki Hatanaka


 */



// -------------------------------------------------------------------
// ロールオーバー
// -------------------------------------------------------------------
function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match(/_off\./))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace(/_off\./, "_on."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace(/_on\./, "_off."));
				}
			}
		}
	}
}

if (window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if (window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}




// -------------------------------------------------------------------
// for jQuery
// -------------------------------------------------------------------
$(function(){



	// グローバルナビ画像を <body> の class により差し替える
	var bodyClass = $('body').attr('class');

	switch(bodyClass) {
		case "mbPlayoffTop":
		$('#pageMenu ol li:nth-child(1)').find('a').html('<img src="/baseball/mlb/playoff/2007/img/menu01_on.jpg" alt="特集トップ" width="51" height="21" />');
		break;

		case "mbPlayoffPhoto":
		$('#pageMenu ol li:nth-child(2)').find('a').html('<img src="/baseball/mlb/playoff/2007/img/menu02_on.jpg" alt="写真ニュース" width="88" height="21" />');
		break;

		case "mbPlayoffSchedule":
		$('#pageMenu ol li:nth-child(4)').find('a').html('<img src="/baseball/mlb/playoff/2007/img/menu04_on.jpg" alt="日程＆結果" width="80" height="21" />');
		break;

		case "mbPlayoffTeam":
		$('#pageMenu ol li:nth-child(5)').find('a').html('<img src="/baseball/mlb/playoff/2007/img/menu05_on.jpg" alt="出場チーム" width="79" height="21" />');
		break;

		case "mbPlayoffVictory":
		$('#pageMenu ol li:nth-child(6)').find('a').html('<img src="/baseball/mlb/playoff/2007/img/menu06_on.jpg" alt="ワールドシリーズ成績" width="135" height="21" />');
		break;

	}


	// 奇数、偶数をクラスとして追加
	$('table').each(function(){
		$(this).find('tr:odd').addClass('odd');
		$(this).find('tr:even').addClass('even');
	});
	
	// :first-child, :last-childをクラスとして追加
	$('.line').each(function(){
		$('li:first-child').addClass('firstChild');
		$('li:last-child').addClass('lastChild');
	});

	// :hoverをクラスとして追加
	$('tr').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});


});


