function createMenus() { for (c = 0; c < 13; c++) mSheets[c] = new MenuSheet(); mSheets[2] .addLink("Open an Account", "http://www.strandtravel.com/open_an_account/", "_self"); mSheets[4] .addLink("Legal Info", "http://www.strandtravel.com/legal_info/", "_self"); mSheets[4] .addSubmenu("Cyprus", "http://www.strandtravel.com/cyprus/", "_self"); mSheets[4] .links[1].submenu .addLink("Paphos", "http://www.strandtravel.com/paphos/", "_self"); mSheets[4] .addLink("Tuscany", "http://www.strandtravel.com/tuscany/", "_self"); mSheets[4] .addLink("Mauritius", "http://www.strandtravel.com/mauritius/", "_self"); mSheets[4] .addLink("St. Lucia", "http://www.strandtravel.com/st_lucia/", "_self"); mSheets[4] .addLink("Thailand", "http://www.strandtravel.com/thailand/", "_self"); mSheets[4] .addLink("Spain", "http://www.strandtravel.com/spain/", "_self"); mSheets[4] .addLink("Barbados", "http://www.strandtravel.com/barbados/", "_self"); mSheets[5] .addLink("Elusive & Exclusive", "http://www.strandtravel.com/elusive_amp_exclusive/", "_self"); mSheets[5] .addLink("Wellness Treats", "http://www.strandtravel.com/wellness_treats/", "_self"); mSheets[5] .addLink("Summer Sun", "http://www.strandtravel.com/summer_sun/", "_self"); mSheets[5] .addLink("Winter Sun & Ski", "http://www.strandtravel.com/winter_sun_amp_ski/", "_self"); mSheets[5] .addLink("Golf", "http://www.strandtravel.com/golf/", "_self"); for (var c in mSheets) { mSheets[c].create(); }; mReady = true; } function onload_function() { createMenus(); } window.onload = onload_function;