function storeCookie( id )
{
	$.cookie( "ecf-fp", id, {expires: 7, path: '/'} );
}

$(document).ready(function() 
{   
	/*** FORMULAIRE DE RECENSEMENT ****/
	$('#formationProForm fieldset div').hide();
	$('.expand').click( function(){
		$(this).parent().parent().find("div").toggle();
		if( $(this).html() == "[+]" )
		{
			$(this).html("[-]");
		} else {
			$(this).html("[+]");
		}
	})
	
	/*** GESTION COOKIE "HOME" ***/ 
	$('.fplink').click( function() { 
		//alert( $(this).attr('id') )
		$.cookie( "ecf-fp", $(this).attr('id'), {expires: 7, path: '/'} );
	});
	
	/*** GESTION AFFICHAGE SOUS-MENU ***/
	$('.depliant').hover( function() {
		$( '> a', this ).addClass( 'selected' );
		$(this).find(".submenu").show();
	},
	function() {
		$( '> a', this ).removeClass( 'selected' );
		$(this).find(".submenu").hide();
	});
});

