var subItems = new Array();



// the members of subItemObj are:

//    itemText: the text that appears in the sub menu for that item

//		whichMenu: the name of the sub menu for matching with the showMenu behavior

//		section: this is either "upper" or "lower" or "both" for upper or lower strings or both

//		link: the url of the exercise frameset



function subItemObj( text, which, sect, url ){

	this.itemText = text;

	this.whichMenu = which;

	this.section = sect;

	this.link = url;

}



subItems[0] = new subItemObj( "Finger Patterns", "intonationeartraining", "both", "fingerpatterns.htm" );

subItems[1] = new subItemObj( "United Nations", "intonationeartraining", "both", "unitednations.htm"  );

subItems[2] = new subItemObj( "Hide In A Pitch", "intonationeartraining", "both", "hideinapitch.htm"  );

subItems[3] = new subItemObj( "Jets vs. Propellers", "intonationeartraining", "both", "jetsvspropellers.htm"  );

subItems[4] = new subItemObj( "Mystery Person", "intonationeartraining", "both", "mysteryperson.htm"  );

subItems[5] = new subItemObj( "Friends and Enemies", "intonationeartraining", "upper", "friendsandenemies.htm" );

subItems[6] = new subItemObj( "Skier", "intonationeartraining", "upper", "skier.htm"  );

subItems[7] = new subItemObj( "Out Of Tune Note Detective", "intonationeartraining", "both", "outoftunenotedetective.htm"  );

subItems[8] = new subItemObj( "Eyes Closed", "intonationeartraining", "both", "eyesclosed.htm"  );

subItems[9] = new subItemObj( "30 Second Finger Race", "intonationeartraining", "both", "30secondfingerrace.htm"  );

subItems[10] = new subItemObj( "Count And Clap #1", "rhythm", "both", "countandclap1.htm" );

subItems[11] = new subItemObj( "Count And Clap #2", "rhythm", "both", "countandclap2.htm"  );

subItems[12] = new subItemObj( "Key Catch", "rhythm", "both", "keycatch.htm"  );

subItems[13] = new subItemObj( "Conducting", "rhythm", "both", "conducting.htm"  );

subItems[14] = new subItemObj( "Metronome", "rhythm", "both", "metronome.htm"  );

subItems[15] = new subItemObj( "Lose The Students", "rhythm", "both", "losethestudents.htm" );

subItems[16] = new subItemObj( "Pepperoni Pizza Torture Machine", "rhythm", "both", "pepperonipizza.htm"  );

subItems[17] = new subItemObj( "Mystery Person", "rhythm", "both", "mysteryperson.htm"  );

subItems[18] = new subItemObj( "Freeze!", "bowing", "both", "freeze.htm"  );

subItems[19] = new subItemObj( "Thirty Second Bow Race", "bowing", "both", "thirtysecondbowrace.htm"  );

subItems[20] = new subItemObj( "Police Officer", "bowing", "both", "policeofficer.htm" );

subItems[21] = new subItemObj( "You're In The Army Now", "bowing", "both", "youreinthearmynow.htm"  );

subItems[22] = new subItemObj( "Hide The Keys", "dynamics", "both", "hidethekeys.htm"  );

subItems[23] = new subItemObj( "Mystery Person", "dynamics", "both", "mysteryperson.htm"  );

subItems[24] = new subItemObj( "Honesty", "readingmusic", "both", "honesty.htm"  );

subItems[25] = new subItemObj( "Note Spelling", "readingmusic", "both", "notespelling.htm" );

subItems[26] = new subItemObj( "Orchestra On Strike #1", "readingmusic", "both", "orchestraonstrike1.htm"  );

subItems[27] = new subItemObj( "Orchestra On Strike #2", "readingmusic", "both", "orchestraonstrike2.htm"  );

subItems[28] = new subItemObj( "Soloist With Orchestra", "ensemble", "both", "soloistwithorchestra.htm"  );

subItems[29] = new subItemObj( "Performance Practice", "ensemble", "both", "performancepractice.htm"  );

subItems[30] = new subItemObj( "This Person...", "ensemble", "both", "thisperson.htm" );

subItems[31] = new subItemObj( "Bad Teacher", "ensemble", "both", "badteacher.htm"  );

subItems[32] = new subItemObj( "Game Show", "ensemble", "both", "gameshow.htm"  );

                                                                                                                         