﻿$(function(){ 
		   
	if ($('#allservers tr').length>100){ 
	
		var list = 'A B C D E F G H I J K L M N O P Q R S T U V W X Y Z'.split(' ');
		var title = '';
		for (var i=0;i<list.length;i++) { 
			title += ' <a class="__ServerIndex" href="#">'+list[i]+'</a> '
		}
		$('#allservers').parent('div').before('<div class="aztitle">'+title+'</div>');
		$('.__ServerIndex').click(function(){
			var index = $(this).html();
			$('#allservers tr:gt(0)').hide();
			$('#allservers td.s1').each(function(){
				if($(this).html().slice(0,1).toUpperCase()==index){$(this).parent('tr').show();}
			});
		   return false;
		});
		
	}
	
})
