//menu objects

function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}

function loadMenus () {
    window.proizvodi = new Menu("Proizvodi");
    proizvodi.addMenuItem("Elektroprivreda","top.window.frame2.location='DaCon_proizvodi_elektro.html'");
	proizvodi.addMenuItem("Naftna privreda","top.window.frame2.location='DaCon_proizvodi_konal.html'");
	proizvodi.addMenuItem("Vodoprivreda","top.window.frame2.location='DaCon_proizvodi_vodo.html'");
	proizvodi.addMenuItem("Industrija","top.window.frame2.location='DaCon_proizvodi_industrija.html'");
	proizvodi.addMenuItem("Gradjevinarstvo","top.window.frame2.location='DaCon_proizvodi_grad.html'");
	proizvodi.addMenuItem("Medicina","top.window.frame2.location='DaCon_proizvodi_medicina.html'");
	proizvodi.addMenuItem("Bankarstvo","top.window.frame2.location='DaCon_proizvodi_bank.html'");
	proizvodi.addMenuItem("Trgovina","top.window.frame2.location='DaCon_proizvodi_trgovina.html'");		
    proizvodi.addMenuItem("Turizam","top.window.frame2.location='DaCon_proizvodi_turizam.html'");
    proizvodi.addMenuItem("Ugostiteljstvo","top.window.frame2.location='DaCon_proizvodi_ugost.html'");
		
	proizvodi.writeMenus();
}
