/* Tigra Menu items structure */
var text_marker = top.text_marker;
var text_submarker = top.text_submarker;
var MENU_ITEMS = [
	[marker('|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Home'), 'home.html', {'tw':'content'},
		/*[sub_marker('Unterpunkt 1.1'), 'dummy.html', {'tw':'content'}],
		[sub_marker('Unterpunkt 1.2'), 'dummy.html', {'tw':'content'}]*/	],
	
	[marker('|&nbsp;&nbsp;&nbsp;Symposium'), 'symposium.html', {'tw':'content'},
		/*[sub_marker('Unterpunkt 2.1'), 'dummy.html', {'tw':'content'}],
		[sub_marker('Unterpunkt 2.2'), 'dummy.html', {'tw':'content'}]*/
	],
	
	[marker('|&nbsp;&nbsp;Organisation'), 'organisation.html', {'tw':'content'},
		/*[sub_marker('Unterpunkt 2.1'), 'dummy.html', {'tw':'content'}],
		[sub_marker('Unterpunkt 2.2'), 'dummy.html', {'tw':'content'}]*/
	],
	
	[marker('|&nbsp;&nbsp;&nbsp;Programme&nbsp;&nbsp;&nbsp;|'), 'schedule.html', {'tw':'content'},
		[sub_marker('Schedule'), 'schedule.html', {'tw':'content'}],
		[sub_marker('Workshop'), 'workshop.html', {'tw':'content'}]
	], 
	
	[marker('|&nbsp;&nbsp;&nbsp;Participants'), 'participants.html', {'tw':'content'},
		/*[sub_marker('Unterpunkt 2.1'), 'dummy.html', {'tw':'content'}],
		[sub_marker('Unterpunkt 2.2'), 'dummy.html', {'tw':'content'}]*/
	],
	
	[marker('|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Location'), 'location1.html', {'tw':'content'},
		[sub_marker('Symposium'), 'location1.html', {'tw':'content'}],
		[sub_marker('Munich'), 'location2.html', {'tw':'content'}],
		[sub_marker('Hostel'), 'location3.html', {'tw':'content'}]
	],
	
	[marker('|&nbsp;&nbsp;&nbsp;Registration'), 'registration.html', {'tw':'content'},
		/*[sub_marker('Unterpunkt 2.1'), 'dummy.html', {'tw':'content'}],
		[sub_marker('Unterpunkt 2.2'), 'dummy.html', {'tw':'content'}]*/
	],
	
	[marker('|&nbsp;&nbsp;&nbsp;Contact'), 'contact.html', {'tw':'content'},
		/*[sub_marker('Unterpunkt 2.1'), 'dummy.html', {'tw':'content'}],
		[sub_marker('Unterpunkt 2.2'), 'dummy.html', {'tw':'content'}]*/
	],
	
];

function marker(text) {
	if (text == text_marker)
    return('<font style="font-family: verdana, arial; font-size: 12px; font-weight: bold; color:#ff9933">' + text + '</font>');
  else
  	return text;
}


function sub_marker(text, bg_color, fg_color) {
	if (text == text_submarker)
    return('<font style="font-family: verdana, arial; font-size: 10px; font-weight: bold; color:#ff9933">' + text + '</font>');
  else
  	return text;
}