/* archive.js
	The javascrpt below fills in an array called arrShows with the contents for show pages
	that should be part of the archive list. It's used on all pages (archive and review pages)
	for shows listed in the file.
	To add another page to touring shows, create the show.htm file in both archive and reviews directories,
	and edit this file to add it to the list
*/

//----------------------------------------------------------------------------------------
function addShow( showName, showHTML, showDescription, showYYYYMM )
// Set the array with the name, HTML file, and Short description for the show
//----------------------------------------------------------------------------------------
{
	this.showName = showName;
	this.showHTML = showHTML;
	this.showDescription = showDescription;
	this.showYYYYMM = showYYYYMM;
}

var arrShows = new Array();
// Put shows in the order you want them to be in the archive.htm file (date descending)
arrShows.push( new addShow( 'Jugged Rabbit Stew', 'juggedrabbit.htm', 'The Singing Magician', '2010.05' ) );
arrShows.push( new addShow( 'The World Is Mine', 'worldismine.htm', 'Being Eugene O\'Neill', '2010.01' ) );
arrShows.push( new addShow( 'Indiana, Indiana', 'indiana.htm', 'A novel adaptation', '2009.09' ) );
arrShows.push( new addShow( 'The Squabble', 'squabble.htm', 'There Will Be Mud', '2009.05' ) );
arrShows.push( new addShow( 'Seal. Stamp. Send. Bang.', 'sealstampsendbang.htm', 'The Singing Postman', '2009.02' ) );
arrShows.push( new addShow( 'Anywhere But Rome', 'anywherebutrome.htm', 'On The Road with Ovid', '2008.11' ) );
arrShows.push( new addShow( 'Musketeer', 'musketeer.htm', 'All for one (library book)', '2008.08' ) );
arrShows.push( new addShow( 'Vote For Uncle Marty', 'voteforunclemarty.htm', 'Topsy-turvy comedy', '2007.09' ) );
arrShows.push( new addShow( 'Moby Dick Unread', 'mobydickunread.htm', 'Thar she blows', '2007.04' ) );
arrShows.push( new addShow( 'Winter In Graupel Bay', 'winteringraupelbay.htm', 'A series of photographs set to life', '2006.12' ) );
arrShows.push( new addShow( 'Something Is Rotten', 'somethingisrotten.htm', 'That smell is the sock', '2006.09' ) );
arrShows.push( new addShow( 'A Synopsis Of Butchery', 'synopsisbutchery.htm', 'A mother\'s anguish', '2006.04' ) );
arrShows.push( new addShow( 'Realism: The Mythical Brontosaurus', 'realism.htm', 'Walk (without) the Dinosaur', '2005.10' ) );
arrShows.push( new addShow( 'Horror: The Transformation', 'horror.htm', 'Classic supernatural theater', '2005.10' ) );
arrShows.push( new addShow( 'Macblank', 'macblank.htm', 'The bard\'s cursed play', '2004.10' ) );
arrShows.push( new addShow( 'Kafka On Ice', 'kafka.htm', 'Everything\'s more magical on ice, even desperation', '2004.10' ) );
arrShows.push( new addShow( 'McGuinn & Murry', 'mcguinnandmurry.htm', 'Gunshoe hijinks', '2004.01' ) );
arrShows.push( new addShow( 'Idiot Box', 'idiotbox.htm', 'TV or not TV', '2003.12' ) );
arrShows.push( new addShow( 'Misc.', 'misc.htm', 'An evening of one acts', '2003.12' ) );
arrShows.push( new addShow( 'The 30<SUP>th</SUP> of Baydak', 'baydak.htm', 'Walking In A Turkmenistanderland', '2003.05' ) );
arrShows.push( new addShow( 'The Odyssey: A Walking Tour', 'odyssey.htm', 'Move over, James Joyce', '2002.10' ) );
arrShows.push( new addShow( 'Titus Andronicus! The Musical', 'titus.htm', 'Shakespeare\'s only musical dramedy', '2002.05' ) );
arrShows.push( new addShow( 'Donner: A Documentary', 'donner.htm', 'Memoirs of the 5th Reindeer', '2001.12' ) );
arrShows.push( new addShow( 'Ward #6', 'ward6.htm', 'Full speed ahead Chekhov', '2001.09' ) );
arrShows.push( new addShow( 'Fin', 'fin.htm', 'It\'s the end of the world as we know it', '2001.06' ) );
arrShows.push( new addShow( '2 In 1', '2in1.htm', 'Thurber and Beowulf - together again', '2001.03' ) );
arrShows.push( new addShow( 'Quixote', 'quixote.htm', 'Impossible dreams', '2000.03' ) );
