j(document).ready(function() {
     // hides the slickbox as soon as the DOM is ready
      j('#extracalender').hide();
     // toggles the slickbox on clicking the noted link  
      j('.viewmorecalender').click(function() {
        j(this).text(j(this).text() == 'Close Events' ? 'View More' : 'Close Events');
		j('#extracalender').toggle(400);
        return false;
      });
});
