		$(document).ready(function(){
		$(".moreInfo").hide();
		$(".mepright a").click(function(){
			 $(".moreInfo:visible").slideUp("slow"); 						
			$(this).parent().next().slideDown("slow");
			
			return false;
		});
	});