/* ================================================================================ */
/* = Fonction pour le menu global = */
/* ================================================================================ */

$(document).ready(function() {
	$('.niv2mg').hide(); // Masque tout les divs niveau 2	
	$('.niv3').hide();
	
	// Niveau 2
	$("#navPrincipale .navTitre a").hover(
		function() {			
			$('.niv3').hide(); // Masque tout les div niveau 3
			$('.niv2mg').hide(); // Masque tout les div niveau 2
			$(this).parent().next().show();	// Affiche le div attaché au titre
		}, function() {}
	);
	
	$(".niv2mg").mousemove(
		function() {
			$(this).show();
		}
	);
		
	// Niveau 3
	// Tout les liens de contentMenu
	$('.contentMenu a.fleche').hover(function() {
		$('.niv3').hide();
		$(this).next().show();
		$(this).next().css('visibility', 'visible'); // correction bug IE6
	}, function() {});
	
	// Niveau 3 sans enfants => Masque tout
	$('.contentMenu a.hasnochildren').hover(function() {
		$('.niv3').hide();
	}, function() {});
	
	// Sauf ceux de niveau 3
	$('.niv3 a').unbind('mouseenter');
	
	// On masque tout
	$('#content').hover(function() {
		$('#navPrincipale .niv2mg').css('display', 'none');
		$('ul.niv3').css('visibility', 'hidden'); // correction bug IE6
	}, function() {});	
});
