



$(document).ready(function()
{
	$('table.maklerList').each(function()
	{
		var deleteIt = $(this).html().indexOf('Praktikant') != -1 || 
					   $(this).html().indexOf('Assistent') != -1;
		
		if (deleteIt)
		{
			$(this)
				.children('tbody')
				.children('tr:eq(1)')
				.children('td:eq(1)')
				.children('div.ausblendenbeipraktika').hide();
		}
	});
});
