$(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 idle_tab');
	$("#delayed-drops .nav-item").removeClass('without-js');
});
function drops_show(){
  $(this).addClass('show active_tab');
  $(this).removeClass('with-js idle_tab');
}
function drops_hide(){
  $(this).removeClass('show active_tab');
  $(this).addClass('with-js idle_tab');
}

