jQuery(document).ready(function(){	
	$("#BotonSuscribirse").live("click", function(){
        var urldestino = jQuery("#CorreoAgregarForm").attr('action');
		jQuery.ajax({
            url: urldestino,
            type: "POST",
            data: jQuery("#CorreoAgregarForm").serialize(),
            cache: false,
            success: function(html){
                jQuery("div#boletin").html(html);
            },
            beforeSend: function(){
                jQuery("div#cargador-boletin").show();
            },
            complete: function(){
                jQuery("div#cargador-boletin").hide();
            }
        });
        return false;
    });
	
});