// 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', {'tw' : 'content'}],
	['How to Start', 'index.php?pageName=how', {'tw' : 'content'}],

	['Photo Gallery', 'index.php?pageName=gallery', {'tw' : 'content'},
		['Mantel (Full/Surround)','index.php?pageName=mantelfullp', {'tw' : 'content'}],
		['Mantel (Cap/Shelf)','index.php?pageName=mantelcapp', {'tw' : 'content'}],
		['Crown','index.php?pageName=crownp', {'tw' : 'content'}],
		['Baseboard','index.php?pageName=basep', {'tw' : 'content'}],
		['Door/Window Trim','index.php?pageName=trimp', {'tw' : 'content'}],
		['Other Ideas','index.php?pageName=otherideasp', {'tw' : 'content'}]
	],
	['Mantels', 'index.php?pageName=mantels', {'tw' : 'content'},
		['Full Surround Mantel','index.php?pageName=mantelfull', {'tw' : 'content'}],
		['Cap/Shelf Mantel','index.php?pageName=mantelcap', {'tw' : 'content'}]
	],

	['Services', 'index.php?pageName=othersrv', {'tw' : 'content'}],
	['Style Choice', 'index.php?pageName=stylechoice', {'tw' : 'content'}],
	['Moulding Choice', 'index.php?pageName=mouldingchoice', {'tw' : 'content'}],
	['Material Choice', 'index.php?pageName=materialchoice', {'tw' : 'content'}],
	['About Dave', 'index.php?pageName=about', {'tw' : 'content'}],
	['Contact Us','index.php?pageName=contact', {'tw' : 'content'}]
];
