$(function() {
	// Pour garder l'état du menu ouvert selon l'url cliqué
	$('#sousmenu a[@href=' + window.location.pathname + window.location.search + ']').addClass('selected');
	var li = $('#sousmenu a[@href=' + window.location.pathname + window.location.search + ']').parent().parent().parent().children("a").addClass('selected');
	
	$("#log").submit(function(){
		
		if ($("#usager").val() == "client" && $("#mp").val() == "client") {
			self.location = "/html/fr/protocole_client/protocole_client.html";
		} else {
			alert("Mauvais nom d'usager / mot de passe");
		}
		return false;
	});
	
	$("#usager, #mp").focus(function(){
		$(this).val("");
	})
	
});

