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