  $('document').ready(function() {

    $('#events span').hide();
    $('#sidebar').load('../../sidebar.htm', function () {

      $('.eventPopUp').each( function () {
        $(this).show();
        button = $(this).prev('.eventInfo');
        pos = $('#sidebar').position();
        positionLeft = pos.left + button.width();
        $(this).css('top', pos.top).css('left', positionLeft);
        $(this).hide();
      });

      $('div.eventInfo').hover( function () {
        popUp = $(this).next('.eventPopUp');
        popUp.fadeIn(300);
      }, function () {
        popUp = $(this).next('.eventPopUp');
        popUp.fadeOut(300);
      });


    });
    $("#events div").toggle( function () {
      $('#events span').slideUp(800);
      $(this).next('span').slideDown(800);
    }, function () {
      $(this).next('span').slideUp(800);
    });

    $(".nonjscal").buildCal("cal", "", "");

  });