jQuery(function () {

	jQuery('#nav li ul').attr('class', 'dropdown');

	jQuery('.dropdown').each(function () {
		jQuery(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				var current = jQuery('.dropdown:eq(0)', this);
				current.slideDown(150);
			},
			out: function () {
				var current = jQuery('.dropdown:eq(0)', this);
				current.fadeOut(500);
			}
		});
	});
});

