function drops_show(){ $(this).siblings().removeClass("hover"); $(this).addClass("hover"); }
function drops_hide(){ $(this).removeClass("hover"); }

(jQuery)(document).ready(function(){
	var nav = $('#mainNav');
	nav.removeClass('nav-no-js');
	nav.find('li:has(ul)').hoverIntent({
		interval: 100, 
		over: drops_show, 
		timeout: 500, 
		out: drops_hide
	});
});
