$(document).ready(function(){

	// Menu
	
	$('#menu ul li').hover(function(){
		$(this).children(".dropdown").show();
	},function(){
		$(this).children(".dropdown").hide();
	});
	$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdownSpaClub").show();
	}).mouseleave(function(){
		$(this).children(".dropdownSpaClub").hide();
	});
	$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdownStandards").show();
	}).mouseleave(function(){
		$(this).children(".dropdownStandards").hide();
	});
	$('#menu ul li').mouseenter(function(){
		$(this).children(".dropdownContact").show();
	}).mouseleave(function(){
		$(this).children(".dropdownContact").hide();
	});
	
});
