jQuery(document).ready(function($) {
        $("#news_form").ajaxForm({ 
        target: '#news_status', 
        success: function(responseText, statusText) {
			$("#news_status").html(responseText);
			$("#txtNome").val("");
			$("#txtEmail").val("");
		} ,
        error: function(request) {                        
            $("#news_status").html('<span>Ocorreu um erro, favor conferir se todos campos estão preenchidos corretamente e tente novamente.</span>');
        } ,
        beforeSubmit: function(formData, jqForm, options) { 
        	$('#news_status').empty();                                
        }              
    });                  	
});
