/*
  --- 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.
*/

function persistTab(category) {
	return '<div id=s_' + category + ' name=s_' + category + '>' + category + '</div>';
}

var MENU_ITEMS = [
	[persistTab('Home'), 'home.html', {'tw' : 'main'}, null
	],
	[persistTab('Michel'), 'biography.html', {'tw' : 'main'},
		['Biography', 'biography.html',{'tw' : 'main'}],
		['Artist Profile', 'profile.html',{'tw' : 'main'}],
		['Awards', 'awards.html',{'tw' : 'main'}],
		['Interview', 'interview.html',{'tw' : 'main'}],
		['In the Spotlight', 'images/spotlight/spotlight.html',{'tw' : 'main'}],
	],
	[persistTab('Play'), 'playbill.html',{'tw' : 'main'},
		['Playbill', 'playbill.html',{'tw' : 'main'}],
		['Review', 'playreview.html',{'tw' : 'main'}],
		['Photos', 'images/photogallery/photogallery.html',{'tw' : 'main'}],
		['Performances', 'performances.html',{'tw' : 'main'}],
		['About Gibran', 'gibran.html',{'tw' : 'main'}]
	],
	[persistTab('Press'), 'western.html',{'tw' : 'main'},
		['Western', 'western.html',{'tw' : 'main'}],
		['Arabic', 'arabic.html',{'tw' : 'main'}],
		['Reviews', 'reviews.html',{'tw' : 'main'}],
	],
	[persistTab('Contact'), 'mailto:a_child_of_life@michelashkar.com', null,
		['Email', 'mailto:a_child_of_life@michelashkar.com'],
		['Guestbook', 'guestbook.html',{'tw' : 'main'}],
	]
];
