/***********************************************
* Omni Slide Menu script - © John Davenport Scheuer
* very freely adapted from Dynamic-FX Slide-In Menu (v 6.5) script- by maXimus
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full original source code
* as first mentioned in http://www.dynamicdrive.com/forums
* username:jscheuer1
***********************************************/

//One global variable to set, use true if you want the menus to reinit when the user changes text size (recommended):

resizereinit = true;

menu[1] = 
{
	id: 'flmenu', 				// Use unique quoted id (quoted) REQUIRED!!
	keepinview: true,			// Fixed menu position as page scrolls
	menutop: 30,				// Y offset from top of page
	borderwidth: 0,	
	
	hdingwidth: 200 ,  			// heading - non linked horizontal cells width
	hdingheight: 24,			// Height of nonlinking menu items
	hdingcolor: "white",		// Heading text color
	hdingbgcolor: "#AA0000",	// Heading bkgnd color
	hdingtxtalign: "center",	// Heading horz text alignment
	hdingvalign: "center",		// Heading vert alignment

	linktxtalign: "center",		// Links text align
	menuspeed: 10,				// Milliseconds
	menupause: 350,
	linkheight: 17,				// Height of linking cells
	linktopad: 4,				// Space padding at top of each link cell

	barwidth: 30,				// Width of pull tab
	barbgcolor: "#000000",		// Pull tab background color
	
	bartext: '<img src="http://legionsgs.com/img/site/fl/SiteMenu4.jpg" valign="top" border="0" alt="Site Menu">',

	menuItems: [
		// [name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
		["Public Access"], //create header
		["Home", "http://fallenlegion.guildportal.com", ""],
		["Enlistment", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=326059",""],
		["Bylaws", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=326060", "", 1, "no"],
		["Lore", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=326058", "",1],
		["Mug Shots", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=326062", ""],
		["Events Calendar", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=325200", ""],
		["Electronic Mail", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=325204", ""],
		["Message Forums", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=325198", ""],
		
		["Members Only", "", ""], //create header
		["Voting", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=325199", "", 1, "no"],
		["Medals", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=326064", "", 1],
		["Roster of Villains", "http://fallenlegion.guildportal.com/Guild.aspx?GuildID=36598&TabID=325201", ""]
	]
};

make_menus();