/*
 * jqueryのみ
 */
 
$(function(){
		   
	/*----------------------------------------------------------------
	 * マウスオーバー（画像名の最後に、通常時「_off」を、マウスオーバー時「_on」を付けるだけ）
	 *----------------------------------------------------------------*/ 
     $('a img,input[type="image"]').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off', '_on'));},
		function(){
			if (!$(this).hasClass('currentPage')) {
			$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
		}
	});

	/*----------------------------------------------------------------
	 * ストライプ
	 *----------------------------------------------------------------*/
	$('.stripe li:nth-child(odd), .stripe tr:nth-child(odd), .stripe2 tbody tr:nth-child(odd),').addClass("odd");
	$('.stripe li:nth-child(even), .stripe tr:nth-child(even), .stripe2 tbody tr:nth-child(even)').addClass("even");

});
