function createMenus() { for (c = 0; c < 7; c++) mSheets[c] = new MenuSheet(); mSheets[0] .addLink("Overview", "aboutus.html", ""); mSheets[0] .addLink("Why Us", "why_us.html", ""); mSheets[0] .addLink("Mission Statement", "ms.html", ""); mSheets[0] .addLink("Our Team", "team.html", ""); mSheets[0] .addLink("Career", "career.html", ""); mSheets[1] .addSubmenu("Experiences", "experiences.html", ""); mSheets[1] .addLink("Our Partners", "partners.html", ""); mSheets[1] .addLink("Technical Training", "tt.html", ""); mSheets[1] .addLink("Support Services", "ss.html", ""); mSheets[2] .addLink("Services : The Overview", "services.html", ""); mSheets[2] .addSubmenu("Satelite Broadband Internet", "#", ""); mSheets[2] .links[1].submenu .addLink("LNet - SCPC", "scpc.html", ""); mSheets[2] .links[1].submenu .addLink("LNet - DVB", "dvb.html", ""); mSheets[2] .links[1].submenu .addLink("LNet - iDiret (Sky Direct)", "idirect.html", ""); mSheets[2] .links[1].submenu .addLink("LNet - Star", "star.html", ""); mSheets[2] .addLink("Vsat Equipment", "vsat_equip.html", ""); mSheets[2] .addLink("Wireless Connectivity Solutions", "wireless_conn.html", ""); mSheets[2] .addLink("Outsourced ICT Support", "outsourced.html", ""); mSheets[3] .addLink("Solutions : The Overview", "#", ""); mSheets[3] .addLink("Network Management Tools", "#", ""); mSheets[3] .addLink("Web-based Software Applications", "#", ""); mSheets[4] .addLink("View List of Clients", "clients.html", ""); mSheets[4] .addLink("Feedback Form", "emailus.html", ""); mSheets[5] .addLink("Contact Details", "contactus.html", ""); mSheets[5] .addLink("Contact Form", "emailus.html", ""); mSheets[5] .addLink("Request For Quote", "quote.html", ""); for (var c in mSheets) { mSheets[c].create(); }; mReady = true; } function onload_function() { createMenus(); } window.onload = onload_function;