<script language="javascript1.2">

	function BYA_Menu () {

		var menuTree = new autoMenu(
			120,			//width of menu items (remember not to use up too much screen width!)
			[15,15,"images/arrowrightwhiteshade.gif","images/arrowrightwhiteshade.gif"],//dimensions and location of right arrow (width,height,normal src,highlight src)
			[15,15,"images/arrowdownwhiteshade.gif","images/arrowdownwhiteshade.gif"],
							//dimensions and location of down arrow (width,height,normal src,highlight src)
							//(just put [] for down arrows if menu is vertically orientated)
			'green',		//normal background colour of menu
			'#cccccc',		//highlight background colour of menu
			'#ffffff',		//normal link colour of menu
			'blue',			//highlight link colour of menu
			BorderColor,		//border colour of menu
			BorderThickness,	//border thickness of menu
			'font-weight: normal;text-decoration: none; font-variant: small-caps;', //stylesheet for the links - do not define colours here
			250,				//length of time (ms) to keep menu open when mouse is not over it
			170,					//initial left position
			100,					//initial top position
			false,				//orientation: true for vertical, false for horizontal
			false				//scroll: true for scroll with page, false for not
		);

		//create parents before children
		//PUT THE EXTERNAL SCRIPT TAGS FIRST!!
		menuTree.sub[0] = new menuBox( "Home", "http://gobya.org");
		menuTree.sub[1] = new menuBox( "Baseball", "little_league_baseball.htm");
		menuTree.sub[2] = new menuBox( "Basketball", "http://gobya.org/basketball.htm");
		menuTree.sub[3] = new menuBox( "Cheerleading","cheerleading.htm");
		menuTree.sub[4] = new menuBox( "Football","travel_football.htm");
		menuTree.sub[5] = new menuBox( "Softball","girls_softball.htm");
		return menuTree;

	}
</script>
