$(document).ready(function(){
	
	//Primary Nav FX, uses HoverIntent plugin ______________________________________
	$(function(){
		$("#nav").addClass('with-js');
		//HoverIntent variables
		$("#nav li").hoverIntent({
			sensitivity: 1,
			interval: 75, 
			over: drops_show, 
			timeout: 300, 
			out: drops_hide
		});
	});
	function drops_show(){ 
		$("ul",$(this)).css({'z-index' : '1000'}).slideDown('fast');
	}
	function drops_hide(){ 
		$("ul",$(this)).css({'z-index' : '1'}).slideUp(100); 
	}
});
