/* 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", "http://www.lulu.com/content/paperback-book/blood-and-metal-01/7751834"],
		["Book 2: Ambassador", "http://www.lulu.com/content/paperback-book/bam-02----eric-the-ambassador/9961292"],
		["Side Stories", "bamsidestories.shtml"]
	],
	["Blog", "http://blog.foxfirestudios.net/", {"tw" : "_blank"}],
	["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/"]
	]
];

