function getData_Events()
{
	// DO NOT MODIFY THE NEXT TWO LINES
	var a	= new Array();
	var i 	= 0;
	//----------------------------------

	// For each event add an entry in the following format
	//
	// a[i++] = new NEWS(
	//			'Date',
	//			'Time',
	//			'Title',
	//			'Description');
	//
	// (Please ensure to prefix any single quotes (') in your text
	//  with backslashes (), e.g. Cassidy's Bar.)
	// INSERT EVENTS BELOW

	//a[i++] = new NEWS(
	//		'*** SPECIAL OFFER ***',
	//		'',
	//		'FREE FUNCTION ROOM',
	//		'For groups of 60 people or more. Contact us for details.');

	a[i++] = new NEWS(
			'Fridays',
			'8:30pm',
			'Blue Shack',
			'This Italian trio has brought the Blues scene back to Dublin.');

	a[i++] = new NEWS(
			'Saturdays',
			'9:30pm',
			'Woodsy',
			'Unique performance of popular cover songs. Has to be seen to be believed.');

	a[i++] = new NEWS(
			'Sundays',
			'2:00pm - 8:00pm',
			'The O\'Connor Clan',
			'Traditional Irish music at it\'s best - join the craic!');

	a[i++] = new NEWS(
			'Sundays (Fortnightly)',
			'8:00pm',
			'Kris Finnerty',
			'Breathtaking music combining a classic folk style with a modern edge.');

	//a[i++] = new NEWS(
	//		'*** SPECIAL OFFER ***',
	//		'',
	//		'FREE FUNCTION ROOM',
	//		'For groups of 60 people or more. Contact us for details.');

	a[i++] = new NEWS(
			'Tuesdays (Fortnightly)',
			'8:00pm',
			'One Album',
			'Watch them perform every song from a different album every fortnight.');

	a[i++] = new NEWS(
			'Wednesdays',
			'9:00pm',
			'Singer Songwriter Night',
			'Share your talent or just relax and appreciate some great musicians.');

	a[i++] = new NEWS(
			'Thursdays (Fortnightly)',
			'9:00pm',
			'Owen Brady',
			'A fresh singer from Dublin that is making it huge in California at the moment. Reminiscent of Jack Johnson with the humor of Louis Prima.');

	// DO NOT MODIFY THE NEXT LINE
	return a;
}
