(function($){ 
	$.fn.extend({
	textLinkScroller: function() {
		if ($(this).is("a")) {
			return this.each(function(){
				$(this).click(function(e) {
					e.preventDefault();
					var w = $('a[name=' + $(this).attr('href').replace('#', '') + ']');
					$('body').animate({scrollTop: w.offset().top}, 'fast');
				});
			});
		}
		
	}
	});
})(jQuery);

