$(document).ready(function(){
	
	// About Links
	$('#nav-about').mouseover(function(){
			$('#drop1').stop(true, true).fadeIn(200);
								   });
	
	$('#nav-about').mouseout(function(){
			$('#drop1').stop(true, true).delay(150).fadeOut(200);
								   });
	
	$('#drop1').hover(function(){
			$(this).stop(true, true);
								}, function(){
									 $(this).delay(200).fadeOut();
											  });
	
	// Projects Links
	$('#nav-projects').mouseover(function(){
			$('#drop2').stop(true, true).fadeIn(200);
								   });
	
	$('#nav-projects').mouseout(function(){
			$('#drop2').stop(true, true).delay(150).fadeOut(200);
								   });
	
	$('#drop2').hover(function(){
			$(this).stop(true, true);
								}, function(){
									 $(this).delay(200).fadeOut();
											  });
	
	// Partners Links
	$('#nav-partners').mouseover(function(){
			$('#drop3').stop(true, true).fadeIn(200);
								   });
	
	$('#nav-partners').mouseout(function(){
			$('#drop3').stop(true, true).delay(150).fadeOut(200);
								   });
	
	$('#drop3').hover(function(){
			$(this).stop(true, true);
								}, function(){
									 $(this).delay(200).fadeOut();
											  });


	// Events Links
	$('#nav-events').mouseover(function(){
			$('#drop4').stop(true, true).fadeIn(200);
								   });
	
	$('#nav-events').mouseout(function(){
			$('#drop4').stop(true, true).delay(150).fadeOut(200);
								   });
	
	$('#drop4').hover(function(){
			$(this).stop(true, true);
								}, function(){
									 $(this).delay(200).fadeOut();
											  });

});