// JavaScript Document
// DO NOT DELETE THE NEXT LINE!
var theDates = [];

// PUT THE DATES & THEMES BELOW - after reading this:
// Single quotes in entries text is fine - Double quotes are a no-no!!
// Every line must start with "theDates[SequenceNumber] = " - beginning with "theDates[0] = "
// A repeated or missing SequenceNumber will stop the code working ...
// The text must be in double quotes e.g. "Sunday 18th January - Windswept and Interesting"
// And end with a semi-colon ";"
// Like this: theDates[1] = "Sunday 31st January - Studio Closed - No Shoot";
// You can put any text in the entries - doesn't have to be dates & themes
// But the panel will always have the Heading shown in this first entry:

theDates[0] = "Upcoming Sunday Shoots";

// Now comes the text - designed for dates & themes, as above
// Maximum of 4 entries (lines) - more won't fit the space available:

theDates[1] = "Sunday 14th March.";
theDates[2] = "Black and White Portraits ";
theDates[3] = "11am- 3pm.";
//theDates[4] = "11am- 3pm.";

// NOTES:
// You can remove any line temporarily by putting two slashes in front of it, like this one has
// BUT BUT BUT you must make sure that the Sequence Numbers still run correctly i.e.
// A missing sequence number will stop the code working ...
// If you remove ALL the entries, either by deleting them all (or all but the Heading entry)
// or by putting two slashes in front of them all (or all but the Heading entry)
// Then the whole panel will disappear from the Home page i.e. it will never appear whilst empty