if (TransMenu.isSupported()) { var ms = new TransMenuSet(TransMenu.direction.down, 0,1, TransMenu.reference.bottomLeft); // Add buying to Menu var buying = ms.addMenu(document.getElementById("buying")); buying.addItem("Search Homes for Sale", "/property-search", "0"); // Add selling to Menu var selling = ms.addMenu(document.getElementById("selling")); selling.addItem("Free Market Appraisal", "/appraisal", "0"); selling.addItem("Why Sell with AFG?", "/why-afg", "0"); selling.addItem("How we will promote your property", "/marketing", "0"); selling.addItem("Selling Tips", "/selling-tips", "0"); // Add renting to Menu var renting = ms.addMenu(document.getElementById("renting")); renting.addItem("Applying For Tenancy", "/applying-for-tenancy", "0"); renting.addItem("Maintenance Requests", "/maintenance-requests", "0"); renting.addItem("Urgent Repairs Procedure", "/urgent-repairs-procedure", "0"); renting.addItem("Property Management", "/property-management", "0"); renting.addItem("Search Homes to Rent", "/renting-search", "0"); // Add about to Menu var about = ms.addMenu(document.getElementById("about")); about.addItem("Our Team", "/our-team", "0"); about.addItem("Testimonials", "/testimonials", "0"); about.addItem("Latest News", "/blog", "0"); // Add area-profiles to Menu var areaprofiles = ms.addMenu(document.getElementById("areaprofiles")); areaprofiles.addItem("Surfers Paradise", "/surfers-paradise", "0"); areaprofiles.addItem("Broadbeach", "/broadbeach", "0"); areaprofiles.addItem("Mermaid Beach", "/mermaid-beach", "0"); areaprofiles.addItem("Burleigh Heads", "/burleigh-heads", "0"); function init73() { if (TransMenu.isSupported()) { TransMenu.initialize(); } } TransMenu.spacerGif = "/images/spacers/x.gif"; TransMenu.sub_indicator = true; TransMenu.menuPadding = 0; TransMenu.itemPadding = 0; TransMenu.shadowSize = 0; TransMenu.shadowOffset = 3; TransMenu.shadowColor = "#888"; TransMenu.hideDelay = 600; TransMenu.slideTime = 300; TransMenu.modid = 73; TransMenu.selecthack = 1; TransMenu.renderAll(); if (typeof window.addEventListener != "undefined") { window.addEventListener( "load", init73, false ); } else if (typeof window.attachEvent != "undefined") { window.attachEvent( "onload", init73 ); } else { if (window.onload != null) { var oldOnload = window.onload; window.onload = function ( e ) { oldOnload( e ); init73(); } } else { window.onload = init73(); } } }