$(function() {
    // odkazy s class="external" otevreme v novem okne
    $('a.external').click(function() {
      if (window.open(this.href)) {
        return false;
      }
    });
    
    // lightbox
    $("a[rel^=lightbox]").lightBox(); 
    
    // zakazani double submitu u formularu
    $('form').preventDoubleSubmit();
    
    // CRAM login form
    $('#cram_form').submit(function() {
        var digest = SHA256($('#cram_token').val() + SHA256($('#cram_salt').val() + $('#password').val()));
        $('#cram_digest').val(digest);
        $('#password').val('');
    });
    $('#cram_form input').focus(function() {
    	$(this).val('');
    });
        
    // ankety
    $('.poll .answer a').each(function () {
    	$(this).click(function () {
    		$.ajax({
				type: 'POST',
				url: this.href,
				data: {
					sent: '1'
				},
				dataType: 'html',
				success: function (data, poll) {
					if (data != null && data != '') {
						$('.poll').html(data);
					}
				}
			});
    		$('.poll').html('<img src="' + BASE_URL + '/images/spinner.gif" alt="" />');
    		return false;
    	});	
    });
});
