$(document).ready(function()
    {
        $(function () {
            $('#validation-dialog').dialog({
                autoOpen: false,
                width: 300,
                height: 150
            });
        });
        
        $('#contact-form form').submit(function()
        {
            $('#text').html('');
            $.post(
                $(this).attr('action'),
                $(this).serialize(),
                function(response) {

                    $('#msg').removeClass('flash_notice');
                    $('#msg').removeClass('flash_error');
                    $('#text').html(response);
                    if (response.indexOf('problems') == -1)
                    {
                        $('#msg').addClass('flash_notice');
                        document.getElementById('contact_request_name').value = '';
                        document.getElementById('contact_request_phone_number').value = '';
                        document.getElementById('contact_request_email').value = '';
                        document.getElementById('contact_request_comment').value = '';
                    }
                    else
                        $('#msg').addClass('flash_error');

                    //show as jquery ui dialog
                    $(".ui-dialog-buttonpane").hide();
                    $('#validation-dialog').dialog('open');
                });
            return false;
        });
    });


