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( "Catch A Falling Star", "posture", "both", "catchafallingstar.htm" );

subItems[1] = new subItemObj( "Ten Bounces", "posture", "both", "tenbounces.htm"  );

subItems[2] = new subItemObj( "Snap", "posture", "both", "snap.htm"  );

subItems[3] = new subItemObj( "My Bonnie", "posture", "both", "mybonnie.htm"  );

subItems[4] = new subItemObj( "Like A Feather", "posture", "both", "likeafeather.htm"  );

subItems[5] = new subItemObj( "The Puppet", "posture", "both", "thepuppet.htm" );

subItems[6] = new subItemObj( "Grow An Inch", "posture", "both", "growaninch.htm"  );

subItems[7] = new subItemObj( "Tupperware Goop", "posture", "both", "tupperwaregoop.htm"  );

subItems[8] = new subItemObj( "Cello Song", "playingposition", "lower", "cellosong.htm"  );

subItems[9] = new subItemObj( "Bear Hug", "playingposition", "lower", "bearhug.htm"  );

subItems[10] = new subItemObj( "Spread Eagle", "playingposition", "both", "spreadeagle.htm" );

subItems[11] = new subItemObj( "Rest Position", "playingposition", "upper", "restposition.htm"  );

subItems[12] = new subItemObj( "Five Step Count", "playingposition", "upper", "fivestepcount.htm"  );

subItems[13] = new subItemObj( "Left Arm Hang", "playingposition", "upper", "leftarmhang.htm"  );

subItems[14] = new subItemObj( "String Names", "playingposition", "both", "stringnames.htm"  );

subItems[15] = new subItemObj( "Knocking", "range", "lower", "knocking.htm" );

subItems[16] = new subItemObj( "Fling Pizzicato (Ski Jump)", "range", "lower", "flingpizzicato.htm"  );

subItems[17] = new subItemObj( "Nose Bop", "range", "upper", "nosebop.htm"  );

subItems[18] = new subItemObj( "Wolf Whistle", "range", "both", "wolfwhistle.htm"  );

subItems[19] = new subItemObj( "Slap Bass", "range", "both", "slapbass.htm"  );



             