$(function(){
	$("#details").hide("fast");
	$(".show").click(function(){
		var status = $('#details').css('display');
		
		if(status == 'none'){
			$("#details").show("slow");
			$('td.show').html('&nbsp;<< ausblenden&nbsp;&nbsp;')
		} else {
			$("#details").hide("slow");
			$('td.show').html('&nbsp;>> einblenden&nbsp;&nbsp;')
		}
	});
});
