$(function()
	{
		$('.mannschaft').click(function(){
		
			var id = $(this).attr('id').replace(/member_/,'');
		
			$('#dialog').show();
			$('#dialog').dialog({
								 modal : true,
								 autoOpen : true,
								 height : 350,
								 width : 400
			 					});
			$('#dialog').dialog('open');
			
			$('#ui-dialog-title-dialog').text('Mannschaft');
			
			$('#dialog').html('');
			$('#dialog').addClass('mannschaftLoading');
			
			$('.ui-dialog-overlay').click(function()
			{
				$('#dialog').dialog('close');
			});
			
			$.get("subpages/informationen/mann-detail-ajax.php",{ 'id' : id },
			function(res)
			{
				$('#dialog').removeClass('mannschaftLoading');
				$('#dialog').html(res);
				$('#dialog').css('height','auto');
				$('#dialog').css('width','auto');
				$('.ui-dialog').css('height','auto');
				$('.ui-dialog abbr').each(function()
				{
					var txt = $(this).html();
					txt = txt.replace(/<\/?\w+((\s+(\w|\w[\w-]*\w)(\s*=\s*(?:\".*?\"|'.*?'|[^'\">\s]+))?)+\s*|\s*)\/?>/g,'');
					$(this).html(txt);
				});
			});	
			return false;
		
		});
		
		
	});
	
		
	function Tastendruck(e) 
	{
	  if (!e)
		var e = window.event;
		if(e.keyCode==27)
		{
			$('#dialog').dialog('close');
		}
	}
	
	document.onkeypress = Tastendruck;
