$(function() {
	    var num = 1;
	    $('#g_nav li a')
	    //マウスオーバー画像を配置
	    .each(function(){
	        $(this).css('background', 'url(./img/nav0'+num+'_h.gif) 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);
	        }
	    );
	});
	$(function() {
	    var num = 1;
	    $('a.rss')
	    //マウスオーバー画像を配置
	    .each(function(){
	        $(this).css('background', 'url(./img/rss_h.gif) no-repeat 0px 5px');
	        $(this).css('display', 'block');
	        num++;
	    })
	    .find('img').hover(
	        function(){
	            $(this).stop().animate({'opacity' : '0'}, 10);
	        },
	        function(){
	            $(this).stop().animate({'opacity' : '1'}, 500);
	        }
	    );
	});
	$(function() {
	    var num = 1;
	    $('#course li')
	    //マウスオーバー画像を配置
	    .each(function(){
	        $(this).css('background', 'url(./img/course0'+num+'_h.jpg) no-repeat 0px 0px');
	        $(this).css('display', 'block');
	        num++;
	    })
	    .find('img').hover(
	        function(){
	            $(this).stop().animate({'opacity' : '0.0'}, 10);
	        },
	        function(){
	            $(this).stop().animate({'opacity' : '1'}, 500);
	        }
	    );
	});
	$(function() {
	    var num = 1;
	    $('#sysli li')
	    //マウスオーバー画像を配置
	    .each(function(){
	        $(this).css('background', 'url(./img/sys0'+num+'_h.jpg) no-repeat 0px 0px');
	        $(this).css('display', 'block');
	        num++;
	    })
	    .find('img').hover(
	        function(){
	            $(this).stop().animate({'opacity' : '0.0'}, 10);
	        },
	        function(){
	            $(this).stop().animate({'opacity' : '1'}, 500);
	        }
	    );
	});
