$(document).ready(function(){
	var num = 1;
	$('#globalheader li')
	//マウスオーバー画像を配置
	.each(function(){
		$(this).css('background', 'url(./common/images/menu_0'+num+'_o.gif) no-repeat 0px -36px')
		num++;
	})	
         $('#globalheader a').hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 500);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});
});
$(document).ready(function(){
	var num = 1;
	$('.globalheader_second li')
	//マウスオーバー画像を配置
	.each(function(){
		$(this).css('background', 'url(../common/images/menu_0'+num+'_o.gif) no-repeat 0px -36px')
		num++;
	})	
         $('#globalheader a').hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 500);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});
});

