/*
  --- 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 MenuItems(level, locale) {
	this.level = level;
	this.locale = locale;

	this.getMenuItems = function() {

		var MENU_ITEMS_HU = [
			['bogáncs|zurboló egyesület', null, null,
				['ismertet&#337;',level+'modules/association/reviewer_hu.html'],
				['alapszabályzat',level+'modules/association/statute_hu_p0.html'],
				['alapító okirat',level+'modules/association/deed_of_foundation_hu_p0.html'],
				['vezet&#337; tanács',level+'modules/association/deed_of_foundation_hu_p3.html#council'],
				['egyesületi tagok',level+'modules/association/members_hu.html'],
				['elérhet&#337;ség',level+'modules/association/contact_hu.html']
			],
			['bogáncs néptáncegyüttes', null, null,
				['történet', level+'modules/bogancs/history_hu.html'],
				['fellépések/vendégszereplések',level+'modules/bogancs/performances_hu.html'],
				['bogáncsos nemzedékek',null,null,
				 	['folklórkör',level+'modules/bogancs/generations/folklorkor_hu.html'],
				 	['els&#337; nemzedék',level+'modules/bogancs/generations/firstgeneration_hu.html'],
				 	['második nemzedék',level+'modules/bogancs/generations/secondgeneration_hu.html'],
				 	['harmadik nemzedék',level+'modules/bogancs/generations/thirdgeneration_hu.html'],
				 	['negyedik nemzedék',level+'modules/bogancs/generations/fourthgeneration_hu.html'],
					['ötödik nemzedék',level+'modules/bogancs/generations/fifthgeneration_hu.html']
				],
				['muzsikusaink',level+'modules/bogancs/musicians_hu.html'],
				['bogáncs lap', level+'modules/bogancs/bogancslap_hu.html']
			],
			['zurboló táncegyüttes', null, null,
				['történet',level+'modules/zurbolo/history_hu.html'],
				['fellépések/vendégszereplések', level+'modules/zurbolo/performances_hu.html'],
				['tagok',level+'modules/zurbolo/members_hu.html'],
				['zurboló utánpótlás', level+'modules/zurbolo/satellite_hu.html'],
				['m&#369;sorfüzetek',level+'modules/zurbolo/playbill_hu.html']
			],
			['rendezvényeink', null, null,
				['zurboló táncház',null,null,
				 	['ismertet&#337;',level+'modules/events/dancehouse/reviewer_hu.html'],
					['2000-2001',level+'modules/events/dancehouse/20002001_hu.html'],
				 	['2001-2002',level+'modules/events/dancehouse/20012002_hu.html'],
				 	['2002-2003',level+'modules/events/dancehouse/20022003_hu.html'],
				 	['2003-2004',level+'modules/events/dancehouse/20032004_hu.html'],
				 	['2004-2005',level+'modules/events/dancehouse/20042005_hu.html'],
				 	['25 éves a kolozsvári táncház',level+'modules/events/dancehouse/25yearsold_hu.html']
				],
				['ifjúsági néptántalálkozók',level+'modules/events/neptanctalalkozok/reviewer_hu.html'],
				['zurboló táncfórum', null,null,
				 	['ismertet&#337;',level+'modules/events/tancforum/reviewer_hu.html'],
					['2001',level+'modules/events/tancforum/reviewer_hu.html']
				],
				['torockói edz&#337;táborok',level+"modules/events/trainingcamp/reviewer_hu.html"],
				['oktatótábor',level+"modules/events/instructorcamp/reviewer_hu.html"],
				['évfordulók',null,null,
				 	['20 éves a Bogáncs',level+'modules/events/other/bogancs_20.html']
				],
			],
		];
		var MENU_ITEMS_RO = [
			['asocia&#355;ia bogáncs|zurboló', null, null,
				['despre noi',level+'modules/association/reviewer_ro.html'],
				['statut',level+'modules/association/statute_ro_p0.html'],
				['act constitutiv',level+'modules/association/deed_of_foundation_ro_p0.html'],
				['consiliul director',level+'modules/association/deed_of_foundation_ro_p3.html#council'],
				['membri',level+'modules/association/members_ro.html'],
				['contact',level+'modules/association/contact_ro.html']
			],
			['ansamblul bogáncs', null, null,
				['istoric', level+'modules/bogancs/history_ro.html']
			],
			['ansamblul zurboló', null, null,
				['istoric',level+'modules/zurbolo/history_ro.html']
			]
		];
		if (this.locale==='hu') {
			return MENU_ITEMS_HU;
		}
		else if(this.locale==='ro') {
			return MENU_ITEMS_RO;
		}
		else {
			return MENU_ITEMS_HU;
		}
	}
}