$(document).ready(function(){ 
						   
	$(".hidebox").hide();
	$(".more-info").click(function(){//toggle
		$(".hidebox", $(this).parent()).slideToggle("slow");
		//$("p:visible", $(this).parent()).hide("slow");
		
	});
	
	/*$(".magicbox a.close").click(function(){
		$("p",$(this).parent().parent()).slideUp("slow");
		return false;
	});*/
 });