$(document).ready(function() {

	$("a#showhideform").click().toggle(function(){
		$("a#showhideform").html("Formular ausblenden");
		$("div#entryform").animate({
			height: 'show',
			opacity: 'show'
		}, 'normal');
	}, function() {
		$("a#showhideform").html("Eintrag schreiben");
		$("div#entryform").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'normal');
	});

});