$(document).ready(function(){
	$("#delayed-drops .nav-item").hoverIntent({
		interval: 150, 
		over: drops_show, 
		timeout: 500, 
		out: drops_hide
	});
	$("#delayed-drops .nav-item").addClass('with-js');
});
function drops_show(){ $(this).addClass('show'); $(this).removeClass('with-js'); }
function drops_hide(){ $(this).removeClass('show'); $(this).addClass('with-js'); }
