/*
 * +---------------------------------
 * |   sheetArray and tableSheet
 * |
 * |   Six fields per line:
 * |
 * |     name of dance ^ cuesheet filename ^ phase ^ rhythm ^ date released ^ comments
 * +---------------------------------
 */
var	sheetArray = new Array(
"Au Revoir^aurevoir.pdf^V+1+1^Foxtrot^2005 June^ ",
"Bolero Sin Ti^bolerosinti.pdf^V+1+1U^Bolero^2003 July^ ",
"Bring It All Back^bringitallback.pdf^V+2U^Samba^2003 June^ ",
"C'est Si Bon^cestsibon.pdf^V+1^Foxtrot^2000 July^ ",
"Gifts Of Love^giftsoflove.pdf^III+2^Waltz^1994 March^ ",
"Good Lovin'^goodlovin.pdf^V^Salsa^2005 July^ ",
"Gravity Storm^gravitystorm.pdf^VI+4U^Merengue^2009 April^ ",
"Happy Together^happytogether.pdf^IV+2^Foxtrot & Jive^2000 April^ ",
"I Finally Found Someone^ifinallyfoundsomeone.pdf^IV+2^Bolero^2007^ ",
"I'm Just a Baby^imjustababy.pdf^V+4U^West Coast Swing^1997 July^ ",
"In Other Words^inotherwords.pdf^VI^Waltz^1999 February^ ",
"Knock Knock^knockknock.pdf^II+2+1U^Two Step^1997 March^ ",
"Love Potion No. 9^lovepotionno9.pdf^II+2^Two Step^2003 September^ ",
"Me and My Shadow Cha^meandmyshadowcha.pdf^IV+1^Cha Cha^2005 August^ ",
"My West Coast Girl^mywestcoastgirl.pdf^V^West Coast Swing^1995 May^ ",
"Never Give Up^nevergiveup.pdf^III^Two-Step^2003 May^ ",
"No Matter What^nomatterwhat.pdf^V+2^Rumba^2003 May^ ",
"No Matter What III^nomatterwhat3.pdf^III^Rumba^2003 March^ ",
"Nos Conocimos^nosconocimos.pdf^V+2^Bolero^2010 July^ ",
"Salsa Cubana^salsacubana.pdf^V^Salsa Rueda^2002 April^ ",
"Somos Novios^somosnovios.pdf^V+1^Bolero^1998 January^ ",
"The Shadow Of Your Smile^theshadowofyoursmile.pdf^IV+2^Rumba^1994 March^ ",
"Thinking of You^thinkingofyou.pdf^VI^Waltz^2002 April^ ",
"This Business of Love^thisbusinessoflove.pdf^V+1^Jive^1998 January^ ",
"Too Marvelous for Words^toomarvelousforwords.pdf^VI^Cha Cha^2001 May^ ",
"Too Marvelous 4 Words^toomarvelous4words.pdf^IV^Cha Cha^2003 February^ ",
"Tulane^tulane.pdf^VI^Jive^2004 June^ ",
"Waltz Among the Stars^waltzamongthestars.pdf^IV+2^Waltz^2002 November^ ",
"You Do Something To Me^youdosomethingtome.pdf^V+1^Quickstep^2001 May^ ",
"Yuya Martinez^yuyamartinez.pdf^IV+2^Cha Cha^2002 April^ "
) ;

/*
 * +---------------------------------
 * |   load the cuesheet Table data
 * +---------------------------------
 */
var     tableSheetName     = new Array() ;
var     tableSheetFile     = new Array() ;
var     tableSheetPhase    = new Array() ;
var     tableSheetRhythm   = new Array() ;
var     tableSheetDateRel  = new Array() ;
var     tableSheetComments = new Array() ;
tableSheetName.length = 0;

for (var i = 0; i < sheetArray.length; i++)
   {
   var entry = sheetArray[i].split("^") ;
   tableSheetName[i]     = entry[0] ;
   tableSheetFile[i]     = entry[1] ;
   tableSheetPhase[i]    = entry[2] ;
   tableSheetRhythm[i]   = entry[3] ;
   tableSheetDateRel[i]  = entry[4] ;
   tableSheetComments[i] = entry[5] ;
   } ;

