$(document).ready(function(){
	var hoverIntentConfig = {    
		over: drops_show,
		timeout: 500,
		out: drops_hide 
	};
	$('.dropdown').hoverIntent(hoverIntentConfig);
	$('.dropdown ul li').hoverIntent(hoverIntentConfig);
/*
	$('.dropdown').hover(function(){
		$(this).stop(true).children('ul').css('display','block').animate({opacity: 1},800);//fadeIn('slow',shown($(this)));
	},function(){
		$(this).stop(true,true).children('ul').animate({opacity: 0},800);//fadeOut('slow',hidden($(this)));
	});
	$('.dropdown ul li').hover(function(){
		$(this).stop(true).children('ul').fadeIn('slow',shown($(this)));
	},function(){
		$(this).stop(true,true).children('ul').fadeOut('slow',hidden($(this)));
	});
*/
	
	function drops_show(){
		$(this).children('ul').fadeIn();
	}
	function drops_hide(){
		$(this).children('ul').fadeOut();
	}
});
