var current;
			var dropTimer;
						
			$(document).ready(function() {
				$("ul#nav > li.drop").hover(function() {
						$("ul#nav > li.drop").children("ul").hide();
						clearTimeout(dropTimer);
						current = $(this).children("ul");
						current.fadeIn(300);
					}, function() {
					dropTimer = setTimeout("hideDrops()", 0);
				});
					
				$("ul#nav li.drop ul > li.drop").hover(function() {
						clearTimeout(dropTimer);
						current = $(this).children("ul");
						current.fadeIn();
					}, function() {
						current.hide();
						current = $("ul#nav > li.drop").children("ul");
				});
			});
			
			function hideDrops()
			{
			clearTimeout(dropTimer);
				current.hide();	
			}	
