$(document).ready(function() {
	$('#nav > li').hover(function() {
		$(this).addClass('hover');
		$(this).children('ul').slideDown('fast');
	}, function() {
		$(this).removeClass('hover');
		$(this).children('ul').hide();
	});
});