//Horizontal Navigation
	$(document).ready(function() {

		var config = {    
		     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
		     interval: 150, // number = milliseconds for onMouseOver polling interval
		     over: openDropdown, // function = onMouseOver callback (REQUIRED)
		     timeout: 150, // number = milliseconds delay before onMouseOut
		     out: closeDropdown // function = onMouseOut callback (REQUIRED)
		};

		function openDropdown(){  
			$(this).addClass("on");
			$(this).children("div.dropdown").slideToggle("fast");
		}
		function closeDropdown(){ 
			$(this).children("div.dropdown").slideToggle("fast", function(){$(this).parent().removeClass("on");});
		}

		/*$('#logo a, #leadership li a').hover(function(){
			$(this).find('img').animate({opacity: 0.0},{queue:false,duration:200});
		}, function(){
			$(this).find('img').animate({opacity: 1.0},{queue:false,duration:200});
		});*/
		
		
		$(".dropdown").hide();
		$("#nav_cromwell, #nav_location, #nav_activities, #nav_food, #nav_accommodation, #nav_events, #nav_business").hoverIntent( config );
		
		//$(".cols").equalHeights();

	});

//Vertical Navigation 
<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function()
{
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane h2").click(function()
    {
	     $(this).next("div.menu_body").slideToggle(500).siblings("div.menu_body").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(left.png)"});
	});
});
