// menu item structure

var MENU_ITEMS = [
	['home', 'index.html', null,],
	['weddings', 'wedding.html', null,
		['price', 'price.html'],
		['terms and conditions', 'terms.pdf', {'tw':'_blank'}],
		['booking', 'booking.pdf', {'tw':'_blank'}],
	],
	['profile', 'profile.html', null,
		['photography', 'photography.html'],
		['artwork', 'artwork.html'],
	],
	['portfolio', 'portfolio.html', null,
		['gallery 1', 'gallery1.html'],
		['gallery 2', 'gallery2.html'],
		['gallery 3', 'gallery3.html'],
		['gallery 4', 'gallery4.html'],
		['gallery 5', 'gallery5.html'],
	],
	['contact', 'contact.html'],
	['sitemap', 'sitemap.html']
];


