    $(".EventLink").live("click", function() {
        var a = $(this).attr("name");
        a = a.split("_");
        var id = a[1];
        var ed = a[2];
        var href = $(this).attr("href");
        var lookupurl = "/ajax.aspx?F=GotoEvent&EventId=" + id + "&EventDate=" + ed 
        $.get(lookupurl, function(o) {return false; });
    });


   jQuery(document).ready(function() {
   $(".EventLink").tooltip({ 
  	    // tweak the position 
  	    offset: [-20, 200], 
              // use "slide" effect 
      	    effect: 'slide', 
         	    position: 'bottom center',
    	    relative:  	true,
    	    lazy: false
     }).dynamic( { 
          // customized configuration on bottom edge 
          bottom: { 
              direction: 'down',  
              bounce: true 
          },
          right: { 
              direction: 'right',  
              bounce: true 
          } 
      });
     });