$(document).ready(function() { 

    // malsup.com/jquery/form/#code-samples
    var options = { 
        target:     '#form_echo',   // target element(s) to be updated with server response 
        type:      'post'
    }; 
 
    // bind to the form's submit event 
    $('#myform').submit(function() { 
        $(this).ajaxSubmit(options); 
        return false; 
    });
    
    var options2 = { 
        target:     '#form_echo',   // target element(s) to be updated with server response 
        type:      'post',
        url:  '/include/ajax.prijava.php'
    }; 
 
    // bind to the form's submit event 
    $('#prijavni_obrazec').submit(function() { 
        $(this).ajaxSubmit(options2); 
        return false; 
    }); 
    
    $('#prijavni_obrazec').validate();
    
    /*$('input#check').click(function(){
        $('input.prijava_potrdi_radio').each(function(index) {
         if($('input#check').is(':checked')) $(this).attr('disabled',false);
         else $(this).attr('disabled',true);

        });
    }); */
    
 
}); 

