//マウスオーバーで画像変更
jQuery(function($){
//フェードなし
    	$("img.btn").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	});

// フェードつきの画像変更
    $('img.btnfade').hover(
        function() {
            $(this).stop().animate({"opacity":0});
        },
        function() {
            $(this).stop().animate({"opacity":1});
        }
    );
});
