/* JQUERY */
$(document).ready(function(){
	/* MENU DEROULANT */
	$(".menu ul").hide();
	
	$(".menu > li").mouseenter(function() {
		$("ul", this).fadeIn();
	});
	
	$(".menu > li").mouseleave(function() {
		$("ul", this).fadeOut();
	});
	
	
	/* FORMULIARES */
	// Surligne les lignes dans les formulaires
	$("input[type=text], textarea").focus(function () {
		$(this).parent().parent().toggleClass("active");
	});
	
	$("input[type=text], textarea").blur(function () {
		$(this).parent().parent().toggleClass("active");
	});

});
