jQuery(function(){
	jQuery("#pageup a").click(function(){
	jQuery('html,body').animate({ scrollTop: jQuery(jQuery(this).attr("href")).offset().top }, 'fast','swing');
	return false;
	});
	jQuery(".li-link a").click(function(){
		jQuery('html,body').animate({ scrollTop: jQuery(jQuery(this).attr("href")).offset().top }, 'fast','swing');
		return false;
		})

});

