$(document).ready(function(){
	$(".edit_comment").bind("click", function(e){
    	id = this.id;
    	id = id.replace("edit_","");
    	$("#form_comment_"+id).show("slow");
    });
    
});