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