/*
 * Ajax JS Functions
 * Author: Gustavo Michel - eu@gust.com.br
 */

/*
	index
	| x_error
*/

/*
 * Error function
 */
$(function(){
    $('#newsletter').submit(function(){
        $.ajax({
            type    : 'POST',
            url     : base_url() + 'emails',
            data    : 'email_news=' + $('#email-news').val(),
            success : function(msg){
                jQuery.facebox(msg);
            }
        });
        
        return false;
    });
});

function x_error(){
	alert('Ocorreu um erro durante a consulta. Desculpe-nos o transtorno.');
}
