$(function(){
	$("#enviar").click( function(){
		var vid = $('#vid').val();
		var comment = $('#comment').val();
		
		$.post("/core/ajax/post-comentario.php",{vid: vid, comment: comment},function(data){
			$("#retorno").html(data);
		});
		
	});
});

function apagar(id,div){
	//$("#retorno").fadeIn(1000);
	$("#retorno").html('Aguarde...<br />');
	$('#retorno').load('/core/ajax/apagar-comentario.php?id='+id);
	$("#"+div).fadeOut(2000);
}
