// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'index.php'],
	['Flowers', null, null,
		// this is how item scope settings are defined
		['Buy One Get One Free', 'index.php?cPath=3088', {'tw':'_blank'}],
		// this is how multiple item scope settings are defined
		['International Orders', 'index.php?cPath=3138', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Anniversary Flowers', 'index.php?cPath=100'],
		['Birthday Flowers', 'index.php?cPath=101'],
		['Special Offers', 'index.php?cPath=893'],
		['Best Sellers', 'index.php?cPath=721'],
		['Occasions', ''],
		['Sentiment', 'index.php?cPath=23'],
		['Valentines Day Flowers', 'index.php?cPath=3067'],
		['New Baby Flowers', 'index.php?cPath=753'],
		['Luxury Flowers', 'index.php?cPath=720'],
		['Chocolate Hamper Gift', 'index.php?cPath=1095'],
		['Balloons', 'index.php?cPath=722'],
		['New Baby Flowers', 'index.php?cPath=753'],
	],
	['Buy 1 Get 1 Free','index.php?cPath=3088'],
	['Birthday Flowers', 'index.php?cPath=101'],
	//['Testimonials', 'view_testimonials.php']
];

