// JavaScript Document
/* Menu */
initMenu();
function initMenu() {
	$(".subMenu").show();
	$(".subMenu").hide();
	$(".bouton").hover(function () {showMenu($(this));}, function () {hideMenu($(this));} );
}
function showMenu(myElement) {
	myElement.children(".subMenu").stop(true, true).slideDown();

}
function hideMenu(myElement) {
	myElement.children(".subMenu").fadeOut();
}
