$(function(){

	$("img.rollover, input.rollover").mouseover(function(){
		if ( $(this).attr("src").match(/^(.+)_on(\.[a-z]+)$/) ) {
			// nothing to do.
		} else {
			$(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.hoverFade").hover(function(){
       $(this).fadeTo("normal", 0.7); // マウスオーバーで透明度を70%にする
    },function(){
       $(this).fadeTo("normal", 1.0); // マウスアウトで透明度を100%に戻す
    });

})