$(function(){
	$("#topics .read_close").hide();
});

function view_topic_all(id,target)
{
	$.post("/" + target + "/topic_view_all/" + id,
		{id:id},
		function( html)
		{
			$("#topics .all").html( html);
		}
	);
	
	$("#topics .read_all").hide();
	$("#topics .read_close").show();
}

function view_topic_all_close()
{
	$("#topics .all").html("");
	
	$("#topics .read_all").show();
	$("#topics .read_close").hide();
}
