// Main Menu Array
// Item syntax: [name, link, target, subflag]
	var menuItems	=	new Array;
// Visibility Flags Array
	var bVis		=	new Array;
			menuItems[0] = ["About us", "home.html", "_self", 0];
			menuItems[1] = ["Services", "serices.html", "_self", 0];
			menuItems[2] = ["Publications", "", "_self", 0];
			menuItems[3] = ["Law", "LAWa.html", "_self", 1];
			menuItems[4] = ["FAQ", "FAQ.html", "_self", 0];
			menuItems[5] = ["Your Request", "contact.html", "_self", 0];
	var subItems = new Array;
	subItems[0] = ["1", "", "_self"];
	subItems[1] = ["2", "", "_self"];
	var subItems3 = new Array;
	subItems3[0] = ["Law1", "LAW1a.html", "_self"];
