$(document).ready(function(){
	$('h4.public_post').click(function(){
		post_id=$(this).siblings('span#post_id').text();
		//alert(post_id);
		edit_post(post_id,'public_post');
	});
	
	$('h4.delete_post').click(function(){
		post_id=$(this).siblings('span#post_id').text();
		//alert(post_id);
		edit_post(post_id,'delete_post');
	});	
	
});

function edit_post(post_id,post_do){
	$.ajax({
		 type:"post",
		 url:"../"+post_do,
		 data:"post_id="+post_id,
		 cache:false,
		 timeout: 1000000,
		 beforeSend:function(){
		 		$("#post_"+post_id).append('<font color="white">Loading...</font>');
		 } ,
		 success:function(date){
		 		$("#post_"+post_id+" font").remove();
		 		$("#post_"+post_id).append(date);
			  	$("#post_"+post_id).parents('div.wrap_edit_post').remove();
			 },
		 error:function(){
		 		$("#post_"+post_id+" font").remove();
				$("#post_"+post_id).append('<font color="red">服务器忙...</font>');
			}
	});		
}

	 
