  $(document).ready(function() {
    //Fancy BOX
    //$("a.zoom").fancybox();
   $(".clickdate").click(function(){
     var id = $(this).attr("id");
    $(this).parent().children(".datepicker").show().datepicker({
      dateFormat: 'dd.mm.yy',
      onSelect: function(dateText, inst) {
         $.ajax({
                 type: "POST",
                 url: "<?=$_SESSION['ABSOLUTE_URL'] ?>edit_date.php",
                 data: "id="+id+"&datum="+dateText+"",
                 success: function(msg){
                   if (confirm("Aktulizovat stránku?"))
                        	{
                        	 window.location.reload();
                        	}

                 }
                });
        $(this).parent().children(".ndate").html(dateText);
        $(this).parent().children(".datepicker").hide();
      }
    });
    $(this).parent().children(".ndate").html("Edituji datum");

   })
    $(".topop").mouseover(function(){
     $(this).parent().parent().children("p.popisek2").show();
    })
    $(".topop").mouseout(function(){
     $(this).parent().parent().children("p.popisek2").hide();
    })
    $("select#fg").click(function() {

     //$(this).parent().children("#stat").hide();


      $(this).parent().children("select#fg").change(function () {
        var id_clanku = $(this).parent().children("select#fg").attr("alt");
        var id_fotogalerie = $(this).parent().children("select#fg").val();
        });
          });
  $('a[rel*=facebox]').facebox();
 });
  