jQuery(function(){	
	$('ul.fromAtoZ li a').click(function(){
		$('ul.fromAtoZ li a').css('text-decoration','none');

		if( $(this).attr('id') != 'alle' )
		{
			$('tbody').hide();
			var buchstabe = $(this).text();
			$('#'+buchstabe).show();
		}
		else
		{
			$('tbody').show();
		}


		$(this).css('text-decoration','underline');
	});
	
	$('ul.fromAtoZ li a').attr('href','javascript:;');
	
});
