     jQuery('document').ready(
		 function()
		 {
			 jQuery('.contenu').hide();
			 
			 jQuery(".glisse").toggle(
				function()
				{
					jQuery(this).html("<strong style='cursor:pointer'>Services (-)</strong>");
				}, 
				function () 
				{
					jQuery(this).html("<strong style='cursor:pointer'>Services (+)</strong>");
				});
			 
			 jQuery('.glisse').click
		 	(
			 	function()
			 	{
					 jQuery(this).next('.contenu').slideToggle(700);
				}
     		 )
    	 }
     )

