		var navTimeout;
		var shouldHide = true;
			$(document).ready(function() {
				$('#header ul#nav li').hover(function() { 
					$(this).parent('ul').find('> li > ul').hide();
					$('> ul:first', this).fadeIn(200,'swing');
					shouldHide = false;
				}, function() { return; });
		 
				$('#header ul#nav').bind('mouseleave', function() { 
					shouldHide = true;
					navTimeout = setTimeout(function() {
					if(shouldHide) {
						$('#header ul#nav ul').each(function() { $(this).fadeOut(1000,'swing'); });
					}
				}, 3500);
			});
			});
