$(document).ready(function() {
						   
	$("a[rel=external]").each(function(){
		this.target = "_blank";
	});
	function showNav(){	
			$(this).addClass('hovering');
	}
	function hideNav(){
			$(this).removeClass('hovering');
	}

	$("ul.links li").hoverIntent({									   
		sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)
		interval: 0,   // number = milliseconds of polling interval
		over: showNav,  // function = onMouseOver callback (required)
		timeout: 100,   // number = milliseconds delay before onMouseOut function call
		out: hideNav    // function = onMouseOut callback (required)
	});
 		
/*	$("ul#navigation-wrapper a").mouseover(function() {
		$("ul.links").addClass('hide');	
		$('#links-blank-space').addClass('hide');	
		var linkName = $(this).attr("href");
		$("ul#"+linkName+"-links").removeClass('hide');				
	});*/

});
