jQuery(document).ready(function($) {
	$('.nav li.dropdown').hover(function(e) {
		$(this).find('ul').fadeIn().slideDown();
	}, function(e) {
		$(this).find('ul').slideUp().fadeOut();
	});
});

