/*
  --- 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.
*/
var MENU_ITEMS = [
	['New Products', null, null,
		['Kubota', './newprodkubota.aspx'],
		['Bush Hog', './newprodbushhog.aspx'],
	],
	['Used Products', './usedproducts.aspx'],
	['Specials', './specials.aspx'],
	['Parts and Service', './parts.aspx'],
	['Financing', './financing.aspx'],
	['Contact', './contact.aspx', null,
		['Contact Sales', './contactsales.aspx'],
		['Contact Parts and Service', './contactparts.aspx'],
	],
];

var ADMIN_ITEMS = [
	['Used Products', './updateusedproducts.aspx'],
	['Specials', './updatespecials.aspx'],
	['Testimonials', './updatetestimonials.aspx'],
	['Financing', './updatefinancing.aspx'],
];