// 文字拡大
$(document).ready( function() {
	$( "#textsizer a" ).textresizer({
		target: "#contents,#footer",
		type: "cssClass",
		sizes: [ "s_medium", "s_large" ]
	});
});

// マウスオーバー（画像名の最後に、通常時「_off」を、マウスオーバー時「_on」を付けるだけ）
$(function(){
     $('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'));
        }
   });
});

// ストライプ
$(function(){
    $('.stripe li:nth-child(odd), .stripe tr:nth-child(odd)').addClass("odd");
    $('.stripe li:nth-child(even), .stripe tr:nth-child(odd)').addClass("even");
})

// 高さを揃える
$(function($){
    $('.auto_height li').autoHeight({column:2, clear:1});
});

