function showReply(id) {
	$thread = $("#thread_" + id).show();
	$('#content', $thread).focus();	
}
 
function showEditMsg(id) {
	$('#msg_' + id).hide(); 
	$('#edit_msg_' + id).show();
	$("textarea", $('#edit_msg_' + id)).focus(); 
}
