// ---- DROPDOWN MENU ---- //
$(function(){
	$('#nav li').hover(function() {
		$(this)
		  .find('ul:first')
		  .stop(true, true)
		  .slideDown('fast');
		}, function(){
	  $(this)
		.find('ul:first')
		.stop(true, true)
		.fadeOut(50);
	  });
});
// ---- DROPDOWN MENU ---- //
