var hover_config = {
	sensitivity: 3,
	interval: 20,
	timeout: 10,
	over: function() {
		$(this).find('ul').slideDown(100, function() {$(this).parent().addClass('hover')});
	},
	out: function() {
		$(this).find('ul').slideUp(100, function() {$(this).parent().removeClass('hover')});
	}
}

$(document).ready(function() {
	$('#nav > li').hoverIntent(hover_config);
});