$.fn.betterSlide = function(destination) {
	var dest = $(destination).offset().top;

	jQuery(this).show(1, function() {
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: dest}, 2000, "swing" );
	});
};