/* 	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 (
	["Welcome to our 2010/2011 season!"],
	[""],

	["Our Tuesday Evening Concert will include"],
	["original music for piano and chamber music."],

	["Our Friday Morning Concert"],
	["will be a PIANO-PALOOZA!"],

	["We look forward to sharing an abundance"],
	["of great music during the upcoming season."]
);