
$(document).ready(function() {

	$('nav ul li').hover(
		function () {
			$(this).find('ul').fadeIn(400);
		}, 
		function () {
			$(this).find('ul').fadeOut(400);
		}
	);


});

