// menu_items.js file

var url = "http://www.pvfdny.org/cgi-bin/main.cgi?page=";

var aboutUs    = "aboutUs";
var gallery    = "gallery";
var members    = "members";
var contactUs  = "contactUs";
var directions = "directions";
var publicInfo = "publicInfo";

var category = "&category=";
var folderId = "&folderId=";

var MENU_ITEMS =[
	["Home",                                url + "index"
	],

	["About Us",                            "",
		["History of Pleasant Valley",  url + aboutUs + category + "historyPleasantValley"],
		["History of Salt Point",       url + aboutUs + category + "historySaltPoint"]
	],

	["Calendar",                            "",
		["PV Calendar",                 url + "calendar"],
		["EMS Calendar",                "http://www.calendar.yahoo.com/pvrscme"]
	],

	["Picture Gallery",                     "",
		["Pleasant Valley Station One", url + gallery + category + "stationOne"],
		["Salt Point Station Two", url + gallery + category + "stationTwo"],
		["Rescue Squad",                url + gallery + category + "rescueSquad"]
	],

	["Members",                             "",
		["Members Login",               url + members + category + "membersLogin"],
		["Check Mail",                  "http://www.ipower.com/mail/index.bml?m=1"],
		["Manage Mail",                 "http://www.ipower.com/mailadmin"]
	],

 	["Links",                               url + "links"
	],

	["Contact Us",                          url + "contactUs"
	],

	["Directions",                          "",
		["District Headquaters",        url + directions + category + "districtHeadquaters"],
		["Pleasant Valley Station One", url + directions + category + "stationOne"],
		["Salt Point Station Two",      url + directions + category + "stationTwo"],
		["Rescue Squad",                url + directions + category + "rescueSquad"]
	],

	["Public Info",                          "",
		["Budget",                       url + publicInfo + folderId + "7"],
		["Minutes",                      url + publicInfo + folderId + "8"]
	]
];
