$(document).ready(function(){
    $('#subscribeForUpdates_email').inline_caption({
        txt: 'type your e-mail', 
        txtStyle: 'color: #999999; font-size: 14px; font-weight: bold;',
        divtop: -20
    });
    $('#subscribeForUpdates').submit(function() {
        
        $("#ajaxIndicator").show();        
        $(this).ajaxSubmit({            
            dataType: "json",
            success: function(response) {
                Boxy.alert(response.message, null, {title: 'Sign up for updates'});
                if (response.success) $('#subscribeForUpdates_block').hide();
                $("#ajaxIndicator").hide();
            }
        });
        
        return false;
    });
});
