//***********************************************************************************************************
//****    top level menu #1
//****    each menu item is divided into three parts, holding places 1,2,3 in the array for 
//****    the first item, 4,5,6 for the second, and so on for each. 
//****    The FIRST item is the NAME of the menu as you want it to be displayed. 
//****    The SECOND piece is the URL of the link. If there is no link to this menu item, insert a set of
//****    empty quotes in it's place.
//****    The THIRD and final item is either the number 0, which indicates that there are no sub-menu's to 
//****    this item, or 1, indicating that there is a submenu to this menu item.
//****
//****    Leaving extra menu arrays in this script won't hurt because without the proper array designation 
//****    for sub menu's, or without directly calling a main menu, they will never be created,
//****    though they do serve as good exapmles for future reference.
//***********************************************************************************************************
arMenu1 = new Array(
"General","http://www.westchestergov.com/kids/detail.asp?categoryID=9",0,
"Diet/Nutrition","http://www.westchestergov.com/kids/detail.asp?categoryID=10",0,
"Mental Health","http://www.westchestergov.com/kids/detail.asp?categoryID=11",0,
"Tobacco/Drinking/Drugs","http://www.westchestergov.com/kids/detail.asp?categoryID=12",0
)
//***********************************************************************************************************
//****    The second main  menu item.
//***********************************************************************************************************
arMenu2 = new Array(
"General","http://www.westchestergov.com/kids/detail.asp?categoryID=3",0,
"Homework","http://www.westchestergov.com/kids/detail.asp?categoryID=5",0,
"College","http://www.westchestergov.com/kids/detail.asp?categoryID=4",0
)
//***********************************************************************************************************
//****    The second main  menu item.
//***********************************************************************************************************
arMenu3 = new Array(
"General","http://www.westchestergov.com/kids/detail.asp?categoryID=6",0,
"Recycling","http://www.westchestergov.com/kids/detail.asp?categoryID=43",0
)
