$(document).ready(function() {
	$(".nav .item").hoverIntent({
		sensitivity:  7,
		interval:  100,
		over: function() { $(this).addClass("show");  },
		timeout: 0,
		out:  function() { $(this).removeClass("show"); }
	});
	$(".tabs").tabs( { event:  "mouseover" } );
});
