// 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.html', {'tw':'_self'}
		
	],
	['Products', 'products.html',
		// this is how item scope settings are defined
		['Round Medallions', 'roundmedallions.html', {'tw':'_self'}],
		// this is how multiple item scope settings are defined
		['Round Medallions', 'roundmedallions.html', {'tw':'_self'}],
		['Square Medallions', 'squaremedallions.html', {'tw':'_self'}],
		['Oval Medallions', 'ovalmedallions.html', {'tw':'_self'}],
		['Stone Rugs', 'stonerugs.html', {'tw':'_self'}],
		['Borders', 'borders.html', {'tw':'_self'}],
		['Themes', 'themes.html', {'tw':'_self'}],
	],
	['Floor Medallion', 'floormedallions.html', {'tw':'_self'}
		
	],
	['Materials', '',
	 // this is how item scope settings are defined
		['granite', 'granitecolors.html', {'tw':'_self'}],
		// this is how multiple item scope settings are defined
		['granite', 'granitecolors.html', {'tw':'_self'}],
		['marble', 'marblecolors.html', {'tw':'_self'}],
		['travertine', 'travertine.html', {'tw':'_self'}],
     ],
	['FAQ', 'faq.html', {'tw':'_self'}],
	['Where to buy', null, null, 
	
		// this is how multiple item scope settings are defined
		['Dealer Locator', 'dealerlocator.html', {'tw':'_self'}],
		['Authorized Dealer Program', 'dealerprogram.html', {'tw':'_self'}],
		    	
		
	],
	
	['Catalog', 'catalog.html', {'tw':'_self'}],
	['Shipping/handle', 'shipping.html', {'tw':'_self'}],
	['Contact Us', 'reseller.html', {'tw':'_self'}]
	
	
	
	
];


