	$(function () {
		$('#nav a').mouseenter(function() {
		
				  $(this).children().next().fadeIn();
		  }).mouseleave(function() {
				  $(this).children().next().fadeOut();
		  });

	
	});

