// Anime les sections de la FAQ
function showSection(o, sectionName)
	{
		if ('none' == document.getElementById(sectionName).style.display)
		{
			jQuery("#" + sectionName).animate({height: 'show', opacity: 'show'}, 'fast');
			//o.style.backgroundImage = "url(images/moins.gif)";
			o.style.backgroundColor  = '#efefef';
		}
		else 
		{
			jQuery("#" + sectionName).animate({height: 'hide', opacity: 'hide'}, 'fast');
			//var newImage = "url(images/plus.gif)";
			//o.style.backgroundImage = newImage;
			o.style.backgroundColor  = 'transparent';
		}
	}