
$(function(){
	$("ul#gnav li").hover(function () {
    	$("div:not(:animated)",this).show();
 	},
  	function () {
    	$("div:not(:animated)",this).hide();
  });
});

$(function(){
     $(".pagetop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});



