function createMenus() { var elements = cssQuery('.mm_item .item a'); for (var c = 0; c < 8; c++) { mSheets[c] = new MenuSheet(); var ml = new MenuLink('', '', mSheets[c]); ml.block = elements[c]; } mSheets[1] .addLink("Company Profile", "/profile/index.htm", "");mSheets[1] .addLink("Consultants", "/profile/consultants.htm", "");mSheets[1] .addLink("Trainers", "/profile/trainers.php", "");mSheets[1] .addLink("Customer Service", "/profile/custservice.htm", "");mSheets[2] .addLink("Consultancy Services", "/showconsul.php", "");mSheets[2] .addLink("Case Studies", "/consultancy/cases.htm", "");mSheets[2] .addLink("FAQs", "/consultancy/faq.htm", "");mSheets[3] .addLink("Public Courses", "/showpublic.php", "");mSheets[3] .addLink("Public Course Schedule", "/public_training/schedule.htm", "");mSheets[3] .addLink("FAQs", "/public_training/faqs.htm", "");mSheets[4] .addLink("In-Company Courses", "/showinco.php", "");mSheets[4] .addLink("Case Studies", "/incompany/case.htm", "");mSheets[4] .addLink("FAQs", "/incompany/faqs.htm", "");mSheets[5] .addLink("DDT Courses", "/driver_training/index.htm", "");mSheets[5] .addLink("Penalty Points System", "/driver_training/ppsystem.htm", "");mSheets[5] .addLink("Case Studies", "/driver_training/case.htm", "");mSheets[5] .addLink("FAQs", "/driver_training/faq.htm", "");mSheets[6] .addLink("Upcoming Seminars", "/seminars/index.htm", "");mSheets[7] .addLink("Vacancies", "/careers/index.htm", ""); for (var c = 0; c < mSheets.length; c++) { mSheets[c].create(); }; mReady = true; } function onload_function() { createMenus(); } window.onload = onload_function; window.onunload = function() { mReady = false; if (document.body.addEventListener) { document.body.addEventListener('mouseover', stopPropagation, true); document.body.addEventListener('mouseout', stopPropagation, true); } }; function stopPropagation(e) { e.stopPropagation(); }