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( "Dots On Fingers", "placementright", "both", "dotsonfingers.htm" );

subItems[1] = new subItemObj( "The Bunny", "placementright", "both", "thebunny.htm"  );

subItems[2] = new subItemObj( "Doorknob", "placementright", "both", "doorknob.htm"  );

subItems[3] = new subItemObj( "Wet Hand", "placementright", "both", "wethand.htm"  );

subItems[4] = new subItemObj( "Hand Slap", "placementright", "both", "handslap.htm"  );

subItems[5] = new subItemObj( "Bow Diseases", "placementright", "both", "bowdiseases.htm" );

subItems[6] = new subItemObj( "Bow Doctor", "placementright", "both", "bowdoctor.htm"  );

subItems[7] = new subItemObj( "Hand Molding", "placementright", "both", "handmolding.htm"  );

subItems[8] = new subItemObj( "The Crane", "placementright", "lower", "thecrane.htm"  );

subItems[9] = new subItemObj( "Long Bows", "placementright", "upper", "longbows.htm"  );

subItems[10] = new subItemObj( "Toilet Paper Roll", "placementright", "both", "toiletpaperroll.htm" );

subItems[11] = new subItemObj( "Bunny Chew", "fingerflexibilityrelaxation", "lower", "bunnychew.htm"  );

subItems[12] = new subItemObj( "Bunny Chews Carrot", "fingerflexibilityrelaxation", "both", "bunnychewscarrot.htm"  );

subItems[13] = new subItemObj( "Spider Push-Ups", "fingerflexibilityrelaxation", "both", "spiderpushups.htm"  );

subItems[14] = new subItemObj( "Spider Lifting Weights", "fingerflexibilityrelaxation", "both", "spiderliftingweights.htm"  );

subItems[15] = new subItemObj( "Mountains And Valleys", "fingerflexibilityrelaxation", "both", "mountainsandvalleys.htm" );

subItems[16] = new subItemObj( "Feed The Bunny", "fingerflexibilityrelaxation", "upper", "feedthebunny.htm"  );

subItems[17] = new subItemObj( "Tap And Curve", "fingerflexibilityrelaxation", "both", "tapandcurve.htm"  );

subItems[18] = new subItemObj( "Poke Your Neighbor", "fingerflexibilityrelaxation", "both", "pokeyourneighbor.htm"  );

subItems[19] = new subItemObj( "The Oil Can", "fingerflexibilityrelaxation", "both", "theoilcan.htm"  );

subItems[20] = new subItemObj( "Wet Glue", "fingerflexibilityrelaxation", "both", "wetglue.htm" );

subItems[21] = new subItemObj( "Rocking Horse", "fingerflexibilityrelaxation", "both", "rockinghorse.htm"  );

subItems[22] = new subItemObj( "Sideways Good-bye", "fingerflexibilityrelaxation", "both", "sidewaysgoodbye.htm"  );

subItems[23] = new subItemObj( "Down-Two-Up-Two", "wristarmmotion", "both", "downtwouptwo.htm"  );

subItems[24] = new subItemObj( "The Squid/Seaweed", "wristarmmotion", "both", "thesquidseaweed.htm"  );

subItems[25] = new subItemObj( "Petting The Dog", "wristarmmotion", "both", "pettingthedog.htm" );

subItems[26] = new subItemObj( "Rhythms", "wristarmmotion", "both", "rhythms.htm"  );

subItems[27] = new subItemObj( "Cirles", "wristarmmotion", "both", "circles.htm"  );

subItems[28] = new subItemObj( "Scooping/Pouring", "wristarmmotion", "both", "scoopingpouring.htm"  );

subItems[29] = new subItemObj( "Finger Duties", "bowcontrol", "both", "fingerduties.htm"  );

subItems[30] = new subItemObj( "Balanced Bow", "bowcontrol", "both", "balancedbow.htm" );

subItems[31] = new subItemObj( "Cello Bow Rocket", "bowcontrol", "lower", "cellobowrocket.htm"  );

subItems[32] = new subItemObj( "Violin Bow Rocket", "bowcontrol", "upper", "violinbowrocket.htm"  );

subItems[33] = new subItemObj( "Write Your Name", "bowcontrol", "both", "writeyourname.htm"  );

subItems[34] = new subItemObj( "Stir The Soup", "bowcontrol", "both", "stirthesoup.htm"  );

subItems[35] = new subItemObj( "Elevator", "bowcontrol", "both", "elevator.htm" );

subItems[36] = new subItemObj( "Eyes Closed Twister", "bowcontrol", "both", "eyesclosedtwister.htm"  );

subItems[37] = new subItemObj( "Thirty Second Bow Stroke", "bowcontrol", "both", "thirtysecondbowstroke.htm"  );

subItems[38] = new subItemObj( "", "bowcontrol", "lower", ".htm"  );



                                                                                                                   