;/**
  * Explore Holidays
  * 
  */
EH.MENU = 
{
    init: function() {         
			function hoverOverMenu(){
				$(this).addClass("hover");
			}
			
			function hoverOutMenu(){
				$(this).removeClass("hover");
			} 
			
			var megaMenuOptions = {
				sensitivity: 7,
				interval: 30,
				over: hoverOverMenu,
				timeout: 100,
				out: hoverOutMenu
			};
			
			$("ul#nav").children('li').hoverIntent(megaMenuOptions);
    }
};

