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( "Rainbow", "shiftingexercises", "both", "rainbow.htm" );

subItems[1] = new subItemObj( "Siren Blob", "shiftingexercises", "lower", "sirenblob.htm"  );

subItems[2] = new subItemObj( "Charlie Brown's Teacher", "shiftingexercises", "both", "charliebrownsteacher.htm"  );

subItems[3] = new subItemObj( "Stop-Hear-Shift-Play", "shiftingexercises", "both", "stophearshiftplay.htm"  );

subItems[4] = new subItemObj( "The Glissando", "shiftingexercises", "both", "theglissando.htm"  );

subItems[5] = new subItemObj( "One Finger Scale", "shiftingexercises", "both", "onefingerscale.htm" );

subItems[6] = new subItemObj( "One Finger Song", "shiftingexercises", "both", "onefingersong.htm"  );

subItems[7] = new subItemObj( "Chat/Read", "shiftingexercises", "both", "chatread.htm"  );

subItems[8] = new subItemObj( "Living Fingerboard", "armvibrato", "lower", "livingfingerboard.htm"  );

subItems[9] = new subItemObj( "Shaking Coke Can", "armvibrato", "lower", "shakecokecan.htm"  );

subItems[10] = new subItemObj( "Polish The Wristwatch", "armvibrato", "lower", "polishwristwatch.htm" );

subItems[11] = new subItemObj( "Finger Push-Up", "armvibrato", "both", "fingerpushup.htm"  );

subItems[12] = new subItemObj( "Vibrato Bump", "armvibrato", "lower", "vibratobump.htm"  );

subItems[13] = new subItemObj( "Jelly Finger", "armvibrato", "lower", "jellyfinger.htm"  );

subItems[14] = new subItemObj( "Blob Vibrato", "armvibrato", "lower", "blobvibrato.htm"  );

subItems[15] = new subItemObj( "Vibrato Assistant", "armvibrato", "both", "vibratoassistant.htm" );

subItems[16] = new subItemObj( "Squiggles", "armvibrato", "upper", "squiggles.htm"  );

subItems[17] = new subItemObj( "Squiggles On A String", "armvibrato", "upper", "squigglesonastring.htm"  );

subItems[18] = new subItemObj( "Pluck And Wiggle", "armvibrato", "upper", "pluckandwiggle.htm"  );

subItems[19] = new subItemObj( "It's Hot", "wristvibrato", "upper", "itshot.htm"  );

subItems[20] = new subItemObj( "Knuckle Knocks", "wristvibrato", "upper", "knuckleknocks.htm"  );

subItems[21] = new subItemObj( "Dust The Strings", "wristvibrato", "upper", "dustonstrings.htm"  );

subItems[22] = new subItemObj( "One Finger/One String", "wristvibrato", "upper", "onefingeronestring.htm"  );

subItems[23] = new subItemObj( "Add Weight", "wristvibrato", "upper", "addweight.htm"  );

subItems[24] = new subItemObj( "Pluck And Wiggle", "wristvibrato", "upper", "pluckandwiggle.htm"  );

