$(document).ready(function(){ 
	$(".magicbox .magicbox_content").hide();
	$(".magicbox .magicbox_button").click(function(){//toggle
		$(".magicbox_content", $(this).parent()).slideToggle("slow");
		return false;
	});
 });