$(document).ready(
	function() {
		$('#nav_accueil').hover( function() { setOver($(this)); }, function() { setOut($(this)); } );
		$('#nav_sig').hover( function() { setOver($(this)); }, function() { setOut($(this)); } );
		$('#nav_lois').hover( function() { setOver($(this)); }, function() { setOut($(this)); } );
		$('#nav_programmes').hover( function() { setOver($(this)); }, function() { setOut($(this)); } );
		$('#nav_partenaire').hover( function() { setOver($(this)); }, function() { setOut($(this)); } );
		$('#nav_contact').hover( function() { setOver($(this)); }, function() { setOut($(this)); } );
	}
);

//survol des menus
function setOver(Id) {
	$(Id).addClass('btnHover');
}
function setOut(Id) {
	$(Id).removeClass('btnHover');
}