jQuery(document).ready(function(){
   $(".agenda_hover").click(function(e){
      $(".agenda_popup").fadeIn('Slow');
      $('.agenda_popup').css("top",e.pageY - 164);
      $('.agenda_popup').css("left",e.pageX - 150);
      var id = $(this).attr("id");

        $.ajax({
           type: "POST",
           url: "/inc/ajax.agenda.php",
           data: "id=" + id,
           success: function(msg){
                $(".agenda_popup").html(msg);
           }
         });
   });

   $(".agenda_popup").click(function(){
        $(".agenda_popup").fadeOut('Slow');
   });

   var htmlheight = document.documentElement.clientHeight
   //alert(htmlheight + "px");
})
