menu = new Menu("v");  menu.addChild(mi_sales = new MenuItem("Sales", null, 100, 36));  menu.addChild(mi_rentals = new MenuItem("Rentals", null, 100, 36));  menu.addChild(mi_aboutus = new MenuItem("About Us", null, 100, 36));  menu.addChild(mi_help = new MenuItem("Home", "index.php", 100, 36));		 	mi_sales.addChild(mi_onthemarket = new MenuItem("Complete Sales Portfolio", "thumbs.php?cat_main=sale&timeline=present", 260)); 	mi_rentals.addChild(mi_homesrent = new MenuItem("Complete Rental Property Portfolio", "thumbs.php?cat_main=rent&cat_sub=normal", 260));	mi_aboutus.addChild(mi_news = new MenuItem("News", "news.php", 150));	mi_aboutus.addChild(mi_companyhistory = new MenuItem("Company History", "info.php?topic=history", 150));	mi_aboutus.addChild(mi_staff = new MenuItem("Staff", "info.php?topic=staff", 150));	mi_aboutus.addChild(mi_employment = new MenuItem("Employment Opportunities", "info.php?topic=employment", 150));	mi_aboutus.addChild(mi_investment = new MenuItem("Investment Opportunities", "info.php?topic=invest", 150));	mi_aboutus.addChild(mi_partners = new MenuItem("Key Partners", null, 150));		mi_partners.addChild(mi_brokers = new MenuItem("Brokers", "info.php?topic=brokers", 200));		 		mi_partners.addChild(mi_financing = new MenuItem("Financing", "info.php?topic=financing", 200));		render(menu,0,0);document.write(output);
