$(document).ready(function() {
	
	
	$('#nav li.dir').hover(function() {
		$(this).find('ul').slideDown('slow');
	}, function() {
		$(this).find('ul').hide();
	});
	
});
