/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

/* adding a to force to string */
var currentloc = 'a' + window.location;
currentloc = currentloc.substring(8,100);
if (currentloc.substring(0,1) == '/') currentloc = currentloc.substring(1,100);
var firstslash = 0;
var j = 0;
for (j=0; j < currentloc.length; j++) { 
	if (currentloc.substring(j, j+1) == '/' || currentloc.substring(j, j+1) == '\\' ) {	
		firstslash = j;
		j += currentloc.length;
	};
};
currentloc = currentloc.substring(0, firstslash+1);
if (currentloc.substring(0,9) == 'localhost') currentloc += 'performanceone/';

var secloc = 'https://' + currentloc + 'secured/';
currentloc = 'http://' + currentloc;

var MENU_ITEMS = [
	['___________________', currentloc + 'merchants.asp' , null,
		['New Merchants', currentloc + 'newmerchants.asp'],
		['Clothing / Shoes', currentloc + 'clothing.asp'],
		['Electronics', currentloc + 'electronics.asp'],
		['Food / Specialty Food', currentloc + 'food.asp'],
		['Gifts', currentloc + 'gifts.asp'],
		['Home Appliances / Small Electrics', currentloc + 'appliances.asp'],
		['Home Furnishings / Furniture', currentloc + 'furniture.asp'],
		['Home Improvement / Outdoor Furnishings', currentloc + 'home.asp'],
		['Jewelry and  Accessories', currentloc + 'jewelry.asp'],
		['Maternity / Children Items', currentloc + 'maternity_children.asp'],
		['Luggage / Music / Books / Software', currentloc + 'music.asp'],
		['Recreation / Sporting Equipment', currentloc + 'recreation.asp'],
		['Specialty', currentloc + 'specialty.asp'],
		['Women\'s Specialty', currentloc + 'womensspecialty.asp'],
		['Brands Available Through Suppliers', currentloc + 'brands.asp'],
		['Discontinued Merchants', currentloc + 'dismerchants.asp'],
		['Printable Merchant List', currentloc + 'merchantlist.asp'],
	],
	['___________________', currentloc + 'suppliers.asp', null,
		['New Travel Suppliers', currentloc + 'newsuppliers.asp'],
		['Car Rental', currentloc + 'carrental.asp'],
		['Cruises', currentloc + 'cruises.asp'],
		['Hotels & Resorts', currentloc + 'hotels.asp'],
		['International', currentloc + 'International.asp'],
		['Services', currentloc + 'Services.asp'],
		['Vacation Packages', currentloc + 'vacation.asp'],
		['Discontinued Travel Suppliers', currentloc + 'dissuppliers.asp'],
		['Printable Travel Supplier List', currentloc + 'supplierlist.asp'],
	],
	['___________________', currentloc + 'tbd.asp', null,
		['Travel Concierge Service', currentloc + 'tbdconcierge.asp'],
		['Travel Certificates', currentloc + 'travelcerts.asp'],
		['Terms & Conditions', currentloc + 'tbdrules.asp'],
	],
	['___________________', secloc + 'login.asp?page=lf.html&pgmain=catalog.html', null,
		['Departments', currentloc + 'departments.asp'],
		['Ordering & FAQ', currentloc + 'ordering.asp']
	],
];

