
//menu array
/*
Description:
Tne main menu is an array -> []
Each element of the array is an object -> {}.
	ex:
	[{element},{element},{element},{element}]

Each of the array's objects has 3 properties: "name", "href" and "level". 
	If an element has to have a 2nd level of menu, the 3rd property "level", should have another array [] instead of null. 
	ex:
	[{element},{element [ {2nd level,2ndlevel} ] },{element}].

If there is there is no second or third level, the "level" property should have null (no bracates).
The same is with the "href" property.
Each element of the array or the object, should be ceparated by a comma: ",". 
*/
var menuLevels = 
[	
	/* ** Menu Level 1 ** */
	{"name":"ICNC","href":"/","level":null},
	{"name":"People","href":null,
			"level":[
			{"name":"ICNC Faculty","href":"/people/faculty.php","level":null},
			{"name":"Students&amp;Alumni","href":"/people/students.php","level":null},
			{"name":"ICNC Staff","href":"/people/staff.php","level":null}
				]
	},
	{"name":"Ph.D Program","href":null,
				"level":[
				{"name":"Hebrew","href":null,
						"level":[
							{"name":"Information","href":"/phd/heb/information","level":null},
							{"name":"Registration","href":"/phd/heb/registration/","level":null}
							]
				},
				{"name":"English","href":null,
						"level":[
							{"name":"Information","href":"/phd/eng/information/","level":null},
							{"name":"Registration","href":"/phd/eng/registration/","level":null}
							]
				},
				{"name":"Ph.D theses","href":"/phd/theses/","level":null},
				{"name":"Courses","href":"http://alice.nc.huji.ac.il/icnccms/","level":null}
					]
	},
	
	{"name":"Publications","href":"/publications/","level":null},
	
	{"name":"Laboratories","href":"/laboratories/","level":null},

	{"name":"Special Activities","href":null,
				"level":[
					{"name":"ICNC Seminar","href":"/seminars/","level":null},
					{"name":"ICNC Events","href":null,
								"level":[
									{"name":"Conferences","href":"/events/icnc/index.php?catid=Conference","level":null},
									{"name":"Workshops","href":"/events/icnc/index.php?catid=Workshop","level":null},
									{"name":"More Events","href":"/events/icnc/index.php?catid=Other","level":null}
									]
					},
					{"name":"Heller Series","href":"/activities/heller/","level":null},
					{"name":"Annual Reports","href":"/activities/annual_reports/","level":null},
					{"name":"Neuralcomp","href":"/neuralcomp/","level":null},
					{"name":"Other Events","href":null,
								"level":[
									{"name":"Conferences","href":"/events/other/index.php?catid=Conference","level":null},
									{"name":"Workshops","href":"/events/other/index.php?catid=Workshop","level":null},
									{"name":"Summer Schools","href":"/events/other/index.php?catid=SummerSchool","level":null},
									{"name":"More..","href":"/events/other/index.php?catid=Other","level":null}
									]
					}
					]
	},
	{"name":"ICNC Friends","href":null,
			"level":[
				{"name":"Brain Circle","href":"/friends/braincircle.php","level":null},
				{"name":"Art &amp; Brain","href":"/friends/artAndBrain.php","level":null},
				//{"name":"Twin centers","href":"/friends/twinCenters.php","level":null},
				{"name":"Supporters","href":"/friends/supporters.php","level":null}
				]
	},
	{"name":"Useful links","href":null,
			"level":[
				{"name":"Media","href":"http://icnc.huji.ac.il/media","level":null},
				{"name":"Alice","href":"http://alice.nc.huji.ac.il","level":null},
				{"name":"ELSC","href":"http://elsc.nc.huji.ac.il","level":null},
				{"name":"Mailing lists","href":"http://alice.nc.huji.ac.il/mailman/listinfo","level":null},
				{"name":"online library","href":"/library/","level":null},
				{"name":"Shnaton","href":"http://science.huji.ac.il/cdshnaton/blank.htm","level":null},
				{"name":"Rishum-Net","href":"https://rishum-net.huji.ac.il","level":null},
				{"name":"Campus map","href":"http://science.huji.ac.il/map/easymap/newmap.php","level":null},
				{"name":"Other centers","href":"/links/othercenters.php","level":null},
				{"name":"Photo Gallery","href":"/gallery/","level":null}
				]
	}
];

