/* --------------------------------------
//
// douga.nikkansports.com jQuery config.js
//
// DATE      : 2008/03/03
// DATE2    : 2008/09/22
// COPYRIGHT : Nikkan Sports News.
// WRITER    : C.Hatanaka & Y.Ito
//
//
-------------------------------------- */


// -------------------------------------------------------------------
// prototype.js の $() とコンフリクトしないための処理
// 　　jquery では、$() を使用すること！
// -------------------------------------------------------------------


$(function(){

// スムーズスクロール
//
	$('a[href="#pagetop"]').click(function(){
		$('a#pagetop').ScrollTo(650, 'easeout');
		return false;
	});


// :first-child, :last-childをクラスとして追加
//
	$('.line').each(function(){
		$('li:first-child').addClass('firstChild');
		$('li:last-child').addClass('lastChild');
	});


// :hoverをクラスとして追加
//
	$('.thumWrap p').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});

	$('.thumWrap dt').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});


// 属性セレクタをクラスとして追加
//
	$('input[@type="text"]').addClass('text');
	$('input[@type="image"]').addClass('image');

});