//the date format is IMPORTANT. No spaces, always YYYY,MM,DD
//if you encounter problems with dates being picked up check here first.
//make sure none of the tabs get disturbed
// *** if you add one, aryEventDate[x+1], make sure to change the index numbers!!!!  ***

// Muslim holiday calender
var aryMuslimEventDate = new Array();
var aryMuslimEventName = new Array();
var aryMuslimEventText = new Array();
var aryMuslimEventDisplayDays = new Array();

aryMuslimEventDate[1] = '2010,08,12';	 // start date
aryMuslimEventName[1] = 'Ramadan Begins on the 12<sup>th</sup>.';	 // subject
aryMuslimEventText[1] = 'Muslims around the world anticipate the arrival of the holiest month of the Islamic calendar. During<br>Ramadan Muslims from all continents unite in a period of fasting and spiritual reflection.';	 // description
aryMuslimEventDisplayDays[1] = 7;	

aryMuslimEventDate[2] = '2010,09,07';	 // start date
aryMuslimEventName[2] = 'Laylat al-Qadr Begins on the 7<sup>th</sup>.';	 // subject
aryMuslimEventText[2] = 'Towards the end of Ramadan, Muslims observe the "Night of Power(or Destiny)," which is when the first<br>verses of the Qur\'an were revealed to Muhammad.';	 // description
aryMuslimEventDisplayDays[2] = 7;	

aryMuslimEventDate[3] = '2010,09,11';	 // start date
aryMuslimEventName[3] = 'Eid al-Fitr Begins on the 11<sup>th</sup>.';	 // subject
aryMuslimEventText[3] = 'At the end of Ramadan, Muslims celebrate "The Festival of Fast-Breaking."';	 // description
aryMuslimEventDisplayDays[3] = 7;	

aryMuslimEventDate[4] = '2010,11,08';	 // start date
aryMuslimEventName[4] = 'Hajj Begins on the 8<sup>th</sup>.';	 // subject
aryMuslimEventText[4] = 'Each year during the 12th month of the Islamic calendar, millions of Muslims make an annual pilgrimage to<br>Mecca, Saudi Arabia called Hajj.';	 // description
aryMuslimEventDisplayDays[4] = 7;	

aryMuslimEventDate[5] = '2010,11,12';	 // start date
aryMuslimEventName[5] = 'The Day of Arafat is on the 12<sup>th</sup>.';	 // subject
aryMuslimEventText[5] = 'During one day of the Hajj, pilgrims gather at the Plain of Arafat to seek God\'s mercy,<br>and Muslims elsewhere fast for the day.';	 // description
aryMuslimEventDisplayDays[5] = 7;	


