$.fn.scroller = function() {
	var speed = 'slow'; // Choose default speed
	$(this).each(function() {
		$(this).bind('click', function() {
			var target = $(this).attr('href'); 
			$('html,body').animate({scrollTop: $(target).offset().top},'slow');
			return false;
		});
	});
}