$(document).ready(function(){

	$('.vertretungen').click(function(){
		var table_id = this.id;
		$('.' + table_id + '_table').fadeIn(400);
		$('table').not('.' + table_id + '_table').hide();
	});
});
