/* Tigra Menu items structure */

/*
Cheat Sheet

The Structure is as follows:

["{{Caption}}", "{{URL}}", { {{Scope Settings*}} } , {{Sub Items in a similar format, and you can nest Levels}}]

Be sure you put a "," at the end of every item save the last item in a level.

When adding a new level, be sure to format it:

["caption", null, null, . . . and then start the new level on the next line.  Be sure to end the last item without a comma, and then add "]," on the next line, omitting the comma if this next line is also a last item in the previous level.

Scope Settings:  To open a new window, add "{"tw" : "_blank"}" to the Scope Settings.

*/
var MENU_ITEMS = [
	["Main", "index.shtml"],
	["The Story", null, null,
		["About", "bamabout.shtml"],
		["History", "bamhistory.shtml"],
		["9-12 Project", "bamproject.shtml"]
	],
	["Novels", null, null,
		["Book 1: Messenger", "bambook01.shtml"],
		["Side Stories", "bamsidestories.shtml"]
	],
	["Community", null, null,
		["Blog", "http://blog.foxfirestudios.net/", {"tw" : "_blank"}],
		["Forum", "http://forum.foxfirestudios.net", {"tw" : "_blank"}],
		["Comming Soon", null, null,
			["Ambassador Eric", null],
			["Wiki", null]
		]
	],
	["Stores", null, null,
		["Lulu Novels", "bamnovels.shtml"],
		["Magazines", "bammagazines.shtml"],
		["Merchandise", "bammerch.shtml"]
	],
	["FoxFire Studios", "http://foxfirestudios.net/index.shtml", null,
		["About David Foxfire", "http://foxfirestudios.net/foxabout.shtml"],
		["DeviantART", "http://daveykinsfoxfire.deviantart.com/"]
	],
	["Additional Links", null, null,
		["912Project", "http://www.the912project.com/"]
	]
];
