//////////////////////////////////////////////////////////////////////
// MenuBar constructor
//////////////////////////////////////////////////////////////////////
function MenuBar(div)
{
	this.div   = document.getElementById("menu_bar_area");
	this.table = document.getElementById("menu_bar");
	
	this.menus = [];

	this.menus.push(new Menu(this, "home"   , "עמוד הבית"     ));
	this.menus.push(new Menu(this, "about"  , "מי אנחנו"      ));
	this.menus.push(new Menu(this, "info"   , "מרכז מידע"     ));
	this.menus.push(new Menu(this, "contact", "יצירת קשר"     ));
	this.menus.push(new Menu(this, "join"   , "קחו חלק בשינוי"));
	this.menus.push(new Menu(this, "links"  , "לינקים"        ));
}

