$(document).ready(function(){
	$(".userContent").hide();
	$(".user a").click(function(){
		$(".userContent").hide();
		$(this).next().show();
		return false;
	});	
 });
