$(document).ready(function() 
{
	$(".member a[href='#']").toggle( 
		function() {
			$(".profil").hide();
			$(this).parent().next().show();
			return false;
		},
		function() {
			$(".profil").hide();
			return false;
		}
	);
	
	$(".membersShow").click(function() { 
		$(".profil").show();	
		return false;
	});
	
	$(".membersHide").click(function() { 
		$(".profil").hide();	
		return false;
	});
});