$(document).ready(function() {
	$('a.showhide').click(function(){			
		
		if ($(this).closest("div").find(".lasuite").is(":hidden")) {
			$(this).closest("div").find(".lasuite").slideDown('slow');
			$(this).text('[-] Masquer');
	
		} else {
			$(this).closest("div").find(".lasuite").slideUp('slow'); 
			$(this).text('[+] En savoir plus');
		}
		return false;
	});
});
