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