jQuery(document).ready(function(){
$('#spam_dialog').jqm({ajax:'/ccSpam/captcha.html?form_id=feedback_form', modal:1, onHide:function( hash ){ hash.w.hide( 'fast', function(){ hash.o.remove(); } ); $('.jqmWindow').html('<p class="waiting_msg">Proszę czekać.. Sprawdzam czy wiadomość nie jest spamem.</p>'); $('input.submit').attr( 'disabled', false ); }, overlay:30});
jQuery('#send').click(function() { 
        $('input.submit').attr('disabled',true);
        $('#feedback_form').ajaxSubmit( {url: '/ccFeedback/validateSend.html',
            success: function( formData ) { if ( formData == 'error') { $('#feedback_form').submit(); } else { $('#spam_dialog').jqmShow(); } }
        }); return false;
         });
 })