$(function(){

  // Hide comments form
  $("#comment-form").hide(); // :not(:has(.form-error))

  $(".toggle-comment-form").live("click",function(event){
    event.preventDefault();


    if ($(this).hasClass("comment-reply")) {
      $("[name='parent_id']").val($(this).data("reply"));
      $("[name='title']").val("Re: "+$($(this).siblings(".comment-title-text")[0]).text());
    }

    $("#comment-form").dialog({
      modal: true,
      width: 500,
      title: "Přidání nového komentáře"
    });

  })

  $("#comment-form:has(.form-error)").each(function(){
    $("#toggle-comment-form").click();
  })

  $(window).scroll(function() {
    if (!$("#caption-watch").length)
      return;
    var captionTop = $('#caption-watch').offset().top;
    var y = $(this).scrollTop();
    if (y >= captionTop) {
      $('#comments').css("position","fixed");
    } else {
      $('#comments').css("position","relative");
    }
  });

})
