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( "Mouse House Count", "placement", "upper", "mousehousecount.htm" );

subItems[1] = new subItemObj( "Mouse House", "placement", "upper", "mousehouse.htm"  );

subItems[2] = new subItemObj( "Rotten Egg", "placement", "upper", "rottenegg.htm"  );

subItems[3] = new subItemObj( "Troll", "placement", "upper", "troll.htm"  );

subItems[4] = new subItemObj( "Neck Rest Check", "placement", "upper", "neckrestcheck.htm"  );

subItems[5] = new subItemObj( "Coke Can", "placement", "lower", "cokecan.htm" );

subItems[6] = new subItemObj( "Tap 4 3 2 1", "placement", "both", "tap4321.htm"  );

subItems[7] = new subItemObj( "Cello/Bass OK Sign", "placement", "lower", "cellobassoksign.htm"  );

subItems[8] = new subItemObj( "Paper Wad", "placement", "lower", "paperwad.htm"  );

subItems[9] = new subItemObj( "School Bus", "flexibility", "upper", "schoolbus.htm"  );

subItems[10] = new subItemObj( "Baby Clutch", "flexibility", "both", "babyclutch.htm" );

subItems[11] = new subItemObj( "Blob Pizzicato", "flexibility", "lower", "blobpizzicato.htm"  );

subItems[12] = new subItemObj( "Opening the Blob", "flexibility", "lower", "openingtheblob.htm"  );

subItems[13] = new subItemObj( "Climber's Hook", "control", "both", "climbershook.htm"  );

subItems[14] = new subItemObj( "Do As I Do", "control", "both", "doasido.htm"  );

subItems[15] = new subItemObj( "Do As I Do Deluxe", "control", "both", "doasidodeluxe.htm" );

subItems[16] = new subItemObj( "Do As I Do Slide", "control", "both", "doasidoslide.htm"  );

subItems[17] = new subItemObj( "Finger Taps", "control", "upper", "fingertaps.htm"  );

subItems[18] = new subItemObj( "Tunnel", "control", "both", "tunnel.htm"  );

subItems[19] = new subItemObj( "Japanese Fan", "control", "upper", "japanesefan.htm"  );



