/*
 * autor: Ciro Feitosa - http://cirofeitosa.com.br
 * maio/2009
 */

function nl2br (str, is_xhtml) {
    var breakTag = '';
 
    breakTag = '<br />';
    if (typeof is_xhtml != 'undefined' && !is_xhtml) {
        breakTag = '<br>';
    }
 
    return (str + '').replace(/([^>]?)\n/g, '$1'+ breakTag +'\n');
}

$(document).ready(function()
{ 
	$('#frm-comenta').submit(function()
	{
		if ($('#frmmsg').val() == '')
		{
			alert('Preencha seu depoimento');
			$('#frmmsg').focus();
		}
		else
		{
			$('#frmbotao').val('Aguarde...').attr('disabled', 'true');
			var msg = $('#frmmsg').val();
			$.post('/ajax/depoimentos', { id: $('#pid').text(), msg: escape($('#frmmsg').val()) }, function(data)
			{
				$('#frmtxt').fadeOut(function()
				{
					$('#frm-comenta input').hide();
					$(this).empty().html('<div style="background: #ffffcc; padding: 5px; display: block;"><b>Seu depoimento foi enviado com sucesso!</b><br />Aguarde moderação...</div><br/><p style="color:black; font-size: 12px">' + nl2br(msg) + '</p>').fadeIn();
				});
			});
		}
		return false;
	});
}); 

