$(document).ready(function(){

	$("ul.dropdown li").dropdown();

});

/*$.fn.dropdown = function() {
	$(this).hover(function(){
		$(this).addClass("hover");
		$('> .dir',this).addClass("open");
		$('ul:first',this).css('visibility', 'visible');
	},function(){
		//$('ul:first',this).fadeIn().idle(2000).fadeOut();   // Does nothing for 2000ms    

		$('ul:first',this).css('visibility', 'hidden');
		$('.open',this).removeClass("open");
		$(this).removeClass("hover");
		
	});

}
*/
$(document).ready(function(){
	$(".dropdown .dir").hoverIntent({
		sensitivity: 1,
		interval: 100, 
		over: drops_show, 
		timeout: 1500, 
		out: drops_hide
	});
	$(".dropdown .dir").addClass('with-js');
});

//function drops_show(){ $(this).addClass('show'); $(this).removeClass('with-js'); }
//function drops_hide(){ $(this).removeClass('show'); $(this).addClass('with-js'); }
	function drops_show(){
		$(this).addClass("hover");
		$('> .dir',this).addClass("open");
		$('ul:first',this).css('visibility', 'visible');
	}
	function drops_hide(){
		$('.open',this).removeClass("open");
		$(this).removeClass("hover");
		$('ul:first',this).css('visibility', 'hidden');
	}