/* Při přejetí myši se zobrzai dialog
 * s detaily o členu ČKP
 */
$(document).ready(function(){
  $("#clenoveCkp li a")
    .hover(
      function(event) {
        $(this.nextSibling)
          .css({
              left: event.pageX + 40,
              top: event.pageY,
              opacity: 0,
              display: "block"
            })
          .fadeTo("slow", 0.9);
      },
      function(event) {
        $(this.nextSibling).css("display", "none");
      }
    )
});
