$(document).ready(function() {
	$('.nav > li').hover(function(){
		$(this).find('.sub').slideDown(250);
	}, function(){
		$(this).find('.sub').fadeOut('slow');
	});
});

