jQuery(function ($) {

	var running_id = '';
	var top = $("#esmenu").css("height");
	$("#esmenu a").each(
		function () {
      			//running_id = this.id + '_target';
				$('#' + this.id + '_target').hide();	
      			/*$('#' + this.id + '_target').hover(function(){}, function(){
      				$('#' + this.id + '_target').slideToggle("fast") } );*/
		}
	);
		
	$("#esmenu a").hover(
      function () {
      	//$(this).css("opacity", 1);
      	//alert("coucou");
		if(running_id)
			$('#' + running_id).slideToggle("slow");
    
      	$(this).animate({top : '-' + top});
      	running_id = this.id + '_target';
      	$('#' + running_id).slideToggle("slow");
      }, 
      function () {
      	//$(this).css("opacity", 0.8);
      	$(this).animate({top : '0'});
				//$('#' + this.id + '_target').hover(function(){},slideToggle("slow"));
      }
    );	
});
