var idate=0; var itime=1; var iinstitution=2; var iplace=3; var ilink=4; var inote=5; //expected order of things in array.
var myEVdelimiter = "•"; //sub-array delimiter is bullet.
var defaultlead = 180; //default number of lead time before timed anncs
var defaulttrail = 2; //default number of trail time after timed anncs
	
//Announcements Lists Defined
annc = new Array();
// Annc is a list of Announcement Arrays (annc[0], annc[1]...)
//These appear at the top of the main column of the Class Homepage.
//Annc is for volatile information--announcements to your class, due dates, etc.
//Annc list items can be made to appear and disappear on specified dates.
// First item in each array is an unformatted string for the notices header.
// Line items are pipe ('|') delimited strings with the following field components:
//	a) month/day [optional]
//  b) contentString [required]
//	c) customLeadTime [optional, but a-field required for use]
//	d) customTrailTime [optional, but a-field and (possibly empty) c-field required for use]
//
// Examples:
//	9/5|Squib on Searle due.|14|2'
//	[This would appear 14 days before 9/5 and cease 2 days after.]
//	9/5|Squib on Searle due.||2'
//	[This would appear default days before 9/5 and cease 2 days after.]
//	9/5|Squib on Searle due.'
//	[This would appear default days before 9/5 and cease default days after.]
//	'Have a happy!'
//	[This would always appear.]
//
//SUBSTRUCTURED CONTENTSTRINGS
// SECOND item in each array is a default item to display for when there are no other events.
// Content strings are pipe ('•') delimited strings with the following field components:
//	1) date [any format]
//  2) time [any format]
//	3) institution
//	4) location
//	5) web address for event or institution
//	6) additional note
//

annc[0]=[
	"do not remove",
//	Second item should be untimed item giving what to say when there are no relevant events.
	"No scheduled events at the moment...•••••Please check back!",
//	List of actual events
//	MM/DD|datestring•time•institution•location•url•note|leadDays|trailDays
	//"8/24|Aug 24•7-8pm•Family of Christ Lutheran Congregation in Concert•3500 NW 129th St at 36th Ave in Felida (NW Vancouver, WA)••Free &amp; open to the public. Call 360-573-5031 for more info.",

"06/20|June 20•4-8pm•Farrar's Bistro•Felida, Vancouver••"
	
//"LUTHERAN CHORAL ASSOCIATION TOUR DATES:",
//"9/14|Sep 14•7:00pm•Lutheran Choral Assoc•Immanuel Lutheran Church, Portland, OR••",
//"9/28|Sep 28•7:00pm•Lutheran Choral Assoc•Zion Lutheran Church, Hillsboro, OR••",
//"10/20|Oct 20•7:00pm•Lutheran Choral Assoc•Peace Lutheran Church, Portland, OR••",
//"12/20|Dec 20•6:00pm•Lutheran Choral Assoc•Peace Lutheran Church, Portland, OR••Chistmas Concert",

//"THE MOONLITERS SHOW DATES (CLASSIC ROCK):",
//"8/23|Aug 23•9:00pm•The Moonliters•Nick's: Amboy, WA••",
//"9/6|Sep 6•8:30pm•The Moonliters•Kenton Club: Lombard St, Portland, OR••",
//"12/19|Dec 20•9:00pm•The Moonliters•Beavercreek Saloon: Oregon City••"

	]