// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function($) {
	
	// MISE À NIVEAU DES BORDS DU MENU PRINCIPAL
	var biggestHeight = 0;
	$(".menu .blocNav").each(function(){
		biggestHeight = Math.max(biggestHeight, $(this).height());
	});
	$(".menu .blocNav").height(biggestHeight);
	
});
