$(document).ready (function () {

    if(mariaForm_forms['mariaContactForm_form1'])
    {        
        mariaForm_forms['mariaContactForm_form1'].onError(function (msg) { 
           
            $('#theMessage').html(msg);
            $('#footerDialogOverlay').show();
            $('#messageWindow').show();
        });
        mariaForm_forms['mariaContactForm_form1'].onSuccess(function (msg) { 
            $('#theMessage').html(msg); 
            $('#footerDialogOverlay').show();
            $('#messageWindow').show();
            mariaForm_forms['mariaContactForm_form1'].reset();
        });

        $("#mariaContactForm_form1 textarea, #mariaContactForm_form1 input").focus(function () {
            $("#mariaContactForm_form1 textarea, #mariaContactForm_form1 input").removeClass("erroneous");
        });
        
        $('#messageCloseButton').click(function(){
            $('#messageWindow').hide();
            $('#footerDialogOverlay').hide();
             $('#theMessage').html(''); 
        });
    }
    
});
