$(document).ready( function(){
		$(".GlobalNav").fadeTo("slow", 0.63); 
		//$(".GlobalNav").dropShadow();
		
	  	$(".Btn_GlobalNav").mouseover(function(){
		  	$(".GlobalNav").slideDown("slow"); 
		});
		
		$(".GlobalNav").mouseover(function(){
		  	$(".GlobalNav").show(); 
		}); 
		
		$(".Btn_GlobalNav, .GlobalNav").mouseout(function(){
		  	$(".GlobalNav").hide(); 
		}); 
		
		
		$(".menu_btn").click(function(){
				$("select").hide(); 					  
				$(".menu_wrap").slideToggle("slow"); 
				$(".menu_wrap_").fadeTo(1, 0).slideToggle(1).fadeTo("slow", 0.75);
				$.ajax({
				  url: "menu.html",
				  cache: false,
				  success: function(html){
					$(".menu_wrap .cont").html("<div style='width:100%;margin-top:250px;color:#df940d;font-size:14px;text-align:center'>Loading...</div>");
					setTimeout(function(){ $(".menu_wrap .cont").html(html); },600); 
				  }
				}); 
		});
		
		$(".close a").click(function(){
			setTimeout(function(){  $("select").show();  },600); 
			$(".menu_wrap").slideUp(); 
			$(".menu_wrap_").fadeTo("slow", 0).slideToggle(1);	
		}); 
		
		//map
		show_=1;
		$(".btn_map, .map_ a").click(function(){
			if (show_==1)
			{						 
		  		$(".map_").fadeIn("slow"); 
				show_=0;
			}else
			{
			  	$(".map_").fadeOut("slow"); 
				show_=1;
			}
		}); 
		
		//shop_comment
		$(".carte_detail_txt_h").fadeTo("slow", 0.92); 
		$(".carte_detail_txt .btn, .carte_detail_txt_h .btn").click(function(){
		  	$(".carte_detail_txt_h").slideToggle("slow"); 
		});

		
		
} ); 