$(function(){
	var width = 0;
	for(var x = 0;x<$('.nav_body ul li').length;x++){
		width=width+$('.nav_body ul li:eq('+x+')').width();
		}
	$('.nav_body ul').width(width+181).css({margin:'0 auto'});
	
	$('.nav_body ul li').hover(function(){
		$(this).css({background:'#695a38'});
		},function(){
			$(this).css({background:''});
			});
	$('.AD_B div:eq(1)').css({margin:'0 15px'});
	$('.AD_B div .span span').css({background:'#000',opacity:0.8});
	
	$('.AD_B div').hover(function(){
		var x = $(this).index();
		$('.AD_B div:eq('+x+') .span *').animate({bottom:0},150);
		},function(){
			var x = $(this).index();
			$('.AD_B div:eq('+x+') .span *').animate({bottom:-30},150);
			});
	
	$('.body .openTime p:eq(0)').css({margin:'0 0 15px 0'});
	
	$('.body div:eq(0)').css({marginLeft:0});
	});
