var Accordeon =
{
	
	//----------------------------------------------------------------------------------
	//																			    init
	init : function()
	{
		if(window.location.hash != '')
		{
			var id					= window.location.hash;
			id						= id.replace('#', '');
			var cible				= $('[rel="'+id+'"]').show('slow');
			$('dt a#'+id).addClass('dt_hover');
		}
	}//init
	
	//----------------------------------------------------------------------------------
	//																			  ouvrir
	,ouvrir : function()
	{
		Accordeon.tout_fermer()
		var id					= $(this).attr('id')
		var cible				= $('[rel="'+id+'"]').show('slow');
		$(this).addClass('dt_hover');
		
		return false;
	}//ouvrir
	
	//----------------------------------------------------------------------------------
	//																		  tout_fermer
	,tout_fermer : function()
	{
		$('#faq dd').hide('slow');
		$('#faq dt a').removeClass('dt_hover');
	}//tout_fermer
	
	//----------------------------------------------------------------------------------
	//																			  fermer
	,fermer : function()
	{
	
	}//fermer
	
		
}//Accordeon
