$(document).ready(function() {
	var text1 = "mehr anzeigen";
	var text2 = "weniger anzeigen";
	
	$('<p class="readmore" id="'+$(".box_more").attr('id')+'">'+text1+'</p>').insertAfter('.box_more');
	$(".box_more").hide();
	
	 $(".readmore").click(function() {
		var id = $(this).attr('id');
		if(id == '')
			return;
		if($(".readmore").html() == text1){
			$(".readmore").html(text2);
			$(".box_more#"+id).slideDown(2000);;
		}
		else{
			$(".readmore").html(text1);
			$(".box_more#"+id).hide();
		}
	 });
});
