(function($){
	$.fn.autoscroll = function() {
	jQuery('html,body').animate(
	{
		scrollLeft: this.offset().left,
		scrollTop: this.offset().top-$(window).height()+this.height()
	},100);
	return this;
	};
})(jQuery);
