// JavaScript Document
$(function() {
   var num = 1;
   $('#header li')
    //マウスオーバー画像を配置
   .each(function(){
        $(this).css('background', 'url(common2/images/navi0' + num + '_on.jpg) no-repeat')
       num++;
    })
    .find('img').hover(
        function(){ 
            $(this).stop().animate({'opacity' : '0'}, 100); 
       },
        function(){
            $(this).stop().animate({'opacity' : '1'}, 800);
       }
    );
	
	   $('#philosophybtn')
    //マウスオーバー画像を配置
   .each(function(){
        $(this).css('background', 'url(common2/images/navi0' + num + '_on.jpg) no-repeat')
       num++;
    })
    .find('img').hover(
        function(){ 
            $(this).stop().animate({'opacity' : '0'}, 100); 
       },
        function(){
            $(this).stop().animate({'opacity' : '1'}, 800);
       }
    );
	
});

