$(function() {   
	//$('bouton').hide();
	$('.pane').hide();
	$('.bouton').bind('click', function() {
		
   	if($(this).next().is(':visible')){
   		closeAll();
   		//alert("C'est fermÃ©");
   	}
   	else
   	{		
   		closeAll();
   		$(this).next().slideDown(70);
   		//alert("C'est ouvert");
   	}
	
});

	
	$(".pane .delete").click(function(){
	$(this).parents(".pane").animate({ opacity: 'hide' }, "fast");
	});
	

   	

function closeAll(){
	$(".modules div:visible").slideUp(70);
}

$('.stop').bind('click', function() {
	alert("DÃ©solÃ©, mais ce lien n'est pas encore en service");	
});

   
    
  

  });
