$(document).ready(function () {	
	
	
	
	$('#nav').hover(
		function () {
			//show the menu
			$('#nav li').show();
			$(this).css('height', 500);
		}, 
		function () {
			//hide the menu
			$('#nav li').hide();
			$(this).css('height', 120);
			}
		);


	$('a').each(function(){ 
		if($(this).attr('href') == "#top") { 
			$(this).click(function(event) { 
				event.preventDefault();
				$('html, body').animate({scrollTop:  '0px'}, 800);	
			});
		}
	})

	});
