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