var menu_speed = 300;
var current_smenu = null;

$(document).ready(
	function()
	{
		
		$('#expert li a').click(function(e){
			e.preventDefault();
			$('#expert li.activated').removeClass('activated');
			$(this).closest('li').addClass('activated');
			
			$('#expert .tabs').hide();
			$( '#' + $(this).attr('href').replace('#','') ).show();
		})
	
		var lastBlock = $("#solution");
		var maxWidth = 210;
		var minWidth = 75;	
	
	$("#menu div.menu").each(function(){
		$(this).hover(function(){
			$(this).animate({width: "220px"}, {queue:false, duration:450});
		},
		function() {
			$(this).animate({width: "110px"}, {queue:false, duration:450});
		});
	});



  $('ul.drawers').accordion({
      header: 'h2.drawer-handle',
      selectedClass: 'open',
      event: 'mouseover',
			autoHeight : false
  });
	
	var locate = "France"
	$('#map-France').mouseover(function(e){
		if (locate == "Maroc") {
			showAddress('7, Cité Paradis, 75010 Paris , France');
			locate = 'France';
		}
	});
	
	$('#map-Maroc').mouseover(function(e){
		if (locate == "France") {
			showAddress('3, rue Bab El MAnsour, 20050 Casablanca, Maroc');
			locate = 'Maroc';
		}
		
	});
	
	}
);