$(function() {
	var num = 1;
	$('.pic li')
	//マウスオーバー画像を配置
	.each(function(){
		$(this).css('background', 'url(images/top/pic/top_onimg0'+num+'.jpg) no-repeat')
		num++;
	})
	.find('img').hover(
		function(){  
			$(this).stop().animate({'opacity' : '0'}, 1000);  
		},
		function(){
			$(this).stop().animate({'opacity' : '1'}, 1000);
		}
	); 
});

