/*
 *  Page Specific Javascript
 */

/*______________________________________________________________________________
 *    page:  calendar.html
 */

/* the page id num for the menu */
page_id = 2;

/* full calendar - month view */
$(document).ready(function() {
  $('#calendar').fullCalendar({
    header: { left:'title', center:'', right:'print today prev next' },
    defaultView: 'month',
    //tkd calendar
    events: $.fullCalendar.gcalFeed(gcal_events_url),
    eventClick: function(event) {
      // opens events in a popup window
      NewWindow(event.url,'gcalevent',700,600,'yes','yes','no','no','no','no','no','no');
      return false;
    },
    loading: function(bool) {
      if (bool) $('#loading').show();
      else $('#loading').hide();
    },
    printLink: gcal_events_print,
    tooltip: 'tt_calendar'
  });
});