$(document).ready(function(){

    $('table#cal-calendar tr td.calEvent a').hover(
      function () {
		$(this).parent().children('ul').css('display', 'block');	
		var pos = $(this).position();
		$(this).parent().children('ul').css('top', pos.left + 'px');
		$(this).parent().children('ul').css('left', pos.top + 'px');
      }, 
      function () {
		$(this).parent().children('ul').css('display', 'none');	
      }
    );
	
});