/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function() {

    $('#NewsletterUserAddForm').ajaxForm(function(data) {
        if(data==1){
            alert('Sus datos fueron registrados con Exito!');
            $('#NewsletterUserAddForm').reset();
        }
        else alert(data);
    });

    $(".fancy_image").fancybox();
    equalHeight($(".news_box_small_text"));
    equalHeight($(".news_box_small_text_two"));

});


function submitNewsletterForm(){
    $('#NewsletterUserAddForm').submit();
}

jQuery.fn.reset = function () {
  $(this).each (function() { this.reset(); });
}
