$(document).ready(function(){
    var selector = '\.(jpg|jpeg|png|gif|bmp)$';
	var offRE = new RegExp('_off' + selector);
	var onRE  = new RegExp('_on'  + selector);
	
	//画像ホバー&&プリロード処理--------------------------------------------------------------//
    $('img, input[type=image]').each(function(){
        var src = $(this).attr('src');
        if( src.match(offRE) != null ){
            //画像のプリロード
            var img = new Image();
            img.src = src.replace(offRE, '_on.$1');

            //ホバーEventの登録
            $(this).hover(function(){
                $(this).attr('src', $(this).attr('src').replace(offRE, '_on.$1'));
            }, function(){
                $(this).attr('src', $(this).attr('src').replace(onRE, '_off.$1'));
            });
        };

    });
	//----------------------------------------------------------------------------//
	
});

