jQuery(document).ready(function() {
	$("a.imprint").click().toggle(function() {
		$('#imprint').animate({
			height: 'show'
		}, 'slow');
	}, function() {
		$('#imprint').animate({
			height: 'hide'
		}, 'slow');
	});
});
