/*

nikkansports.com  config.js for jQuery

DATE      : 2007/08/01
COPYRIGHT : Nikkan Sports News.
WRITER    : Chiaki Hatanaka


 */



$(function(){



	// メニュー画像を <body> の class により差し替える
	var bodyClass = $('body').attr('class');

	switch(bodyClass) {
		case "asianColumn":
		$('#pageMenu ol li:nth-child(7)').find('a').html('<img src="http://www5.nikkansports.com/soccer/japan/asiancup/2007/img/menu-column_on.gif" alt="コラム" width="42" height="26" />');
		break;
	}


	// 奇数、偶数をクラスとして追加
	$('table').each(function(){
		$(this).find('tr:odd').addClass('odd');
		$(this).find('tr:even').addClass('even');
	});
	
	// :first-child, :last-childをクラスとして追加
	$('ul.line').each(function(){
		$('li:first-child').addClass('firstChild');
		$('li:last-child').addClass('lastChild');
	});


	// css3の:emptyをクラスとして追加
	$(':empty').addClass('empty');


	// :hoverをクラスとして追加
	$('tr').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});


	// 隣接セレクタ
	$('.section + .section').addClass('line');


	// 属性セレクタ
	$('input[@type="checkbox"]').addClass('checkbox');


});


