function hoverIE6() {
	/* Only for IE6 - Simulate :hover CSS class */
	if ($.browser.msie && $.browser.version=="6.0") {
		$("#menu li").hover(function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		});
	}
}

$(document).ready(function() {
	hoverIE6();
	
	if ( $("#validateForm").length > 0) {
		$("form").validate();
	}
	
	$("#primeurs table tr:nth-child(1)").addClass("title");
	$("#primeurs table tr td:nth-child(2)").addClass("note");
	
	//Verfication du mail pour la page de contact
	//$("#contactForm").submit(function() {
	//	if (checkMail()) {
	//		
	//	} else {
	//		
	//	}
	//});
});