$(document).ready(function(){
    $("img.rollover").each(function() {
        var off = this.src;
        var dot = this.src.lastIndexOf('.');
        var on = this.src.substr(0, dot) +
            '_on' + this.src.substr(dot, 4);
        $(this).hover(
            function() { this.src = on; },
            function() { this.src = off; });
    });
});

$(function(){

// マウスホバーイベント
$(".pic").hover(
	function(){
	$(this).css("background", "url(images/list_bg_on.gif) left top no-repeat");
	},
	function(){
	$(this).css("background", "url(images/list_bg_off.gif) left top no-repeat");
	}
);

});

