
//------------CALENDER------------------// 

document.addEventListener('DOMContentLoaded', function() {
    var calendarEl = document.getElementById('calendar');

    var calendar = new FullCalendar.Calendar(calendarEl, {
      initialView: 'dayGridMonth',
      initialDate: '2025-07-01',
      headerToolbar: {
        right: 'prev,next today',
        
      },
      events: [
         {
          title: '2nd week',
          start: '2025-07-11'
         },
	{
	  title: 'Monthly Meetings',
          start: '2025-07-11'
        },
        {
          title: '2nd week',
          start: '2025-07-12'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-07-12'
        },

        {
          title: '2nd week',
          start: '2025-07-13'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-07-13'
        },
        {
          title: '3rd week',
          start: '2025-07-18'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-07-18'
        },
        {
          title: '3rd week',
          start: '2025-07-19'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-07-19'
        },
	{
          title: '3rd week',
          start: '2025-07-20'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-07-20'
        },


	{
          title: '2nd week',
          start: '2025-08-08'
         },
	{
	  title: 'Monthly Meetings',
          start: '2025-08-08'
        },
        {
          title: '2nd week',
          start: '2025-08-09'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-08-09'
        },

        {
          title: '2nd week',
          start: '2025-08-10'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-08-10'
        },
        {
          title: '3rd week',
          start: '2025-08-15'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-08-15'
        },
        {
          title: '3rd week',
          start: '2025-08-16'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-08-16'
        },
	{
          title: '3rd week',
          start: '2025-08-17'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-08-17'
        },


	{
          title: '2nd week',
          start: '2025-09-12'
         },
	{
	  title: 'Monthly Meetings',
          start: '2025-09-12'
        },
        {
          title: '2nd week',
          start: '2025-09-13'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-09-13'
        },

        {
          title: '2nd week',
          start: '2025-09-14'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-09-14'
        },
        {
          title: '3rd week',
          start: '2025-09-19'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-09-19'
        },
        {
          title: '3rd week',
          start: '2025-09-20'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-09-20'
        },
	{
          title: '3rd week',
          start: '2025-09-21'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-09-21'
        },



	{
          title: '2nd week',
          start: '2025-10-10'
         },
	{
	  title: 'Monthly Meetings',
          start: '2025-10-10'
        },
        {
          title: '2nd week',
          start: '2025-10-11'
        },
        {
          title: 'Monthly Meetings',
          start: '2025-10-11'
        },

        {
          title: '2nd week',
          start: '2025-10-12'
        },
	{
          title: 'Monthly Meetings',
          start: '2025-10-12'
        },
   


        {
          title: '50 Days Fasting Prayers',
          start: '2025-08-28',
        },
	{
          title: 'opening ceremony',
          start: '2025-08-28',
        },

	 {
          title: '50 Days Fasting Prayers',
          start: '2025-10-16',
        },
	{
          title: 'closing ceremony',
          start: '2025-10-16',
        },
	
        
      ]
    });

    calendar.render();
  });
