jQuery(function($) {
	$('#nav .menu li').hoverIntent({
		over: function() {
			$(this).find('.sub-menu:first').slideDown('fast');
		},
		out: function() {
			$(this).find('.sub-menu').slideUp('fast');
		},
		timeout: 50
	});
	
	
	// Check if mailchimp instruction text should disappear
	if($('#footer-widget-area-third .widget_ns_mailchimp').length == 0) {
		$('#text-2').remove();
	}
});
