var url_base='inc/';
//ρρ



	

    $(document).ready(function() {
		
	
		$("#boton_comment").hover(function(){
				$('body').css('cursor', 'pointer'); 
			},function(){
				$('body').css('cursor', 'auto'); 
		});
		

		$('#boton_comment').click(function(){
			var t=$(this);
			var id_comment=$('[name="id_comment"]').val();
			var name=$('[name="Name"]').val();
			var comment=$('[name="comentario"]').val();
			$.post("/inc/action/comentar.php", { id_commented: id_comment,name:name,comentario:comment },
  				 function(data) {
					var html=$("#comment_holder").html();
					$("#comment_holder").html(data+html);
					$('[name="Name"]').val('');
					$('[name="comentario"]').val('');
					
  		 	});
		});

 
 });
 
 
 
 		



