	 $(document).ready(function(){
		$("tr.description").hide();  
		$("tr.head").click(function(){
			//$(this).next('tr')next('tr').toggle();    //probleme mit IE8
				 
			var elem = $(this).next().next()[0];
			if(elem.style.display == 'none') {
				$("tr.description").hide();  
				$(this).next().next().show();
			}
			else
    			 $(this).next().next().hide();
 
		});
		$("div#left a").click(function(){
			$("div#left a").css("color","black");		   
			 $(this).css("color","white");
		});
	});