$(function(){

// マウスホバーイベント
$(".pic").hover(
	function(){
	$(this).css("background", "url(http://island.33x.jp/orion/js/images/list_bg_on.gif) left top no-repeat");
	},
	function(){
	$(this).css("background", "url(http://island.33x.jp/orion/js/images/list_bg_off.gif) left top no-repeat");
	}
);

});

