$(function() {
	    var num = 1;
	    $('.gallery a')
	    //マウスオーバー画像を配置
	    .each(function(){
	        $(this).css('background', 'url(./img/eventc.png) no-repeat 0px 0px');
	        $(this).css('display', 'block');
	        num++;
	    })
	    .find('img').hover(
	        function(){
	            $(this).stop().animate({'opacity' : '0'}, 10);
	        },
	        function(){
	            $(this).stop().animate({'opacity' : '1'}, 500);
	        }
	    );
	});
