/* File: diary.js
   Description: performs manipulation of event diary items
*/

$(function()
{
  /* display the datepicker */
  /*$("#calendar").datepicker();
  $("#calendar").show();*/
  
  /* Hide extra info for non-js*/
  /*$('div#event_listing ul li').hover(function(e)
    {
      $long_desc = $('div.long_desc', this);
      $long_desc.show();
      $long_desc.fadeTo(500, 1);
    }, function(e)
    {
      $long_desc = $('div.long_desc', this);
      $long_desc.fadeTo(500, 0).hide();
    });*/
});