$(function() {
	$("div.info").hide();
	$("span.profil > a").click(function () {
		var child = $(this).parent().next();
		if(child.is(":visible")) {
			child
				.animate({
					height: 'hide',
					opacity: 'hide'
				}, '250',
				function () {
					$(this).hide();
				});
			return;
		}
		child.animate({
			height: 'show',
			opacity: 'show'
		}, '250');
	});
});
