/* 	Home Page What's New Data Fields:
	  - These are the four topics on the home page titled: What's New
	  - Each topic is two lines
	  - The trick is to not overfill either line, or use too little so it looks odd
	  - Pick useful ideas from the President's Letter
	  - Use < and > or { and } to identify where the URL pointer should go; if appropriate for that topic
	    If you don't use both ends, unpredictable things will happen!
			<> points to the top of the Presidents Page
			{} points to the bottom of the Presidents Page
	  - Note you cannot use a double quote " unless it is escaped with \ (e.g. \"), but you can use a single quote ' in the text
      
      Sample text length :
	["Our first concert of the season will be held"],
	["on September 15 at Grace Presbyterian Church."],      
*/
whatsnewtopics = new Array (
	["Thanks to everyone who attended our"],
	["All-Chopin 200th Birthday Concert."],

	["The winners of the Sturm-Page Piano Competition"],
	["will perform on March 14th."],

	["This month's concerts also feature new compositions"],
	["and a monumental work by Brahms for two pianos."],


	["A <Student Music Ensemble Workshop> for classical"],
	["and jazz students is scheduled for June, 2010."]
);