jQuery(function($) {
	
	$(".detail_panel").hide();
	
	$(".open").bind("click", function() {	
												
		$(".detail_panel").hide();
		$(".open").show();
		$(this).hide();
		$('div.detail_panel', $(this).parent().parent()).fadeIn('slow');

		return false;
	});
	
	$(".close").bind("click", function() {	
											
		$(this).parent().parent().hide();
		$(".open", $(this).parent().parent().parent()).show();

		return false;
	});
	
});

