jQuery.fn.extend({
	
	scrollTo : function(speed, pos, easing) {
		
		return this.each(function() {
			var targetOffset = $(this).offset().top;
			$('html,body').animate({scrollTop: targetOffset - pos}, speed, easing);
		});
		
	}
		
});