var mnuConCache = true;
$(document).ready(function() { 
	//Gestion spécifique au menu Rechercher
	$("#connexion a" ).click(
		function(){
			if (mnuConCache) {
				$(this).parent().children(".connexion_form").css("display", "block");
				$(this).addClass('selected');					
				mnuConCache = false;
			}
			else {
				$(this).parent().children(".connexion_form").css("display", "none");
				$(this).removeClass('selected');	
				mnuConCache = true;
			}	
		}
	);			
});

