jQuery(document).ready(function($) {

	$('#alphabet a').click(
		function() {
			$.scrollTo('#' + this.innerHTML, 3000);			
  	});

});