$(function(){
	$('.objektButton').click(function(){
		$(this).next('.objektInhalt').slideToggle('slow');
		$(this).children('span').toggleClass('up');
	});	 		   
});