// JavaScript Document
function loadMenus() {
    //Dynamic Menus
   window.myMenu = new Menu();
    myMenu.addMenuItem("my menu item A");
    myMenu.addMenuItem("my menu item B");
    myMenu.addMenuItem("my menu item C");
    myMenu.addMenuItem("my menu item D");
	
	window.myMenu1 = new Menu("Ourteam");
	myMenu1.addMenuItem("About Us", "top.window.location='http://www.thenunezteam.com/ourteam-aboutus.html'");
    myMenu1.addMenuItem("Why Us?", "top.window.location='http://www.thenunezteam.com/ourteam-whyus.html'");
    myMenu1.addMenuItem("Realtor Profiles", "top.window.location='http://www.thenunezteam.com/ourteam-realtor.html'");
    myMenu1.addMenuItem("Our Selling Advantage", "top.window.location='http://www.thenunezteam.com/ourteam-ourselling.html'");
	myMenu1.addMenuItem("Market Share", "top.window.location='http://www.thenunezteam.com/ourteam-marketshare.html'");
	myMenu1.addMenuItem("Sales History", "top.window.location='http://www.thenunezteam.com/ourteam-saleshistory.html'");
	
	window.myMenu2 = new Menu("SellProperty");
    myMenu2.addMenuItem("What's My Home Worth?", "top.window.location='http://www.thenunezteam.com/HomeWorth.asp'");
    myMenu2.addMenuItem("Consider It SOLD!", "top.window.location='http://www.thenunezteam.com/sellproperty-considerit.html'");
    myMenu2.addMenuItem("Our Marketing", "top.window.location='http://www.thenunezteam.com/sellproperty-ourmarketing.html'");
    myMenu2.addMenuItem("Top Dollar", "top.window.location='http://www.thenunezteam.com/sellproperty-topdollar.html'");
    myMenu2.addMenuItem("Real Estate Cycle", "top.window.location='http://www.thenunezteam.com/sellproperty-realestate.html'");
	myMenu2.addMenuItem("How Long To Sell?", "top.window.location='http://www.thenunezteam.com/sellproperty-howlong.html'");
	myMenu2.addMenuItem("Plan Of Action", "top.window.location='http://www.thenunezteam.com/sellproperty-planof.html'");
	myMenu2.addMenuItem("3 Reasons", "top.window.location='http://www.thenunezteam.com/sellproperty-3reasons.html'");

    window.myMenu3 = new Menu("Buy Property");
    myMenu3.addMenuItem("Find your Dream House", "top.window.location='http://www.thenunezteam.com/DreamHouse.asp'");
    myMenu3.addMenuItem("Our Team Listings", "top.window.location='http://thenunezteam.mlsb.com/mls/featured.cfm?cid=2846'");
    myMenu3.addMenuItem("MLS", "top.window.location='http://thenunezteam.mlsb.com/mls/search.cfm?cid=2846'");
	myMenu3.addMenuItem("FREE Email Updates", "top.window.location='http://thenunezteam.mlsb.com/mls/co/login.cfm?cid=2846'");
	myMenu3.addMenuItem("Open Houses", "top.window.location='http://thenunezteam.mlsb.com/mls/open.cfm?cid=2846'");
	
   //    myMenu3.addMenuItem("White", "document.bgColor='white'");
  //  myMenu3.menuHiliteBgColor = "#6699CC";

	window.myMenu6 = new Menu("Inland Empire Cities");
	myMenu6.addMenuItem("Bloomington", "top.window.location='http://www.thenunezteam.com/resourcesin-bloomington.html'");
	myMenu6.addMenuItem("Colton", "top.window.location='http://www.thenunezteam.com/resourcesin-colton.html'");
    myMenu6.addMenuItem("Fontana", "top.window.location='http://www.thenunezteam.com/resources-inland-font.html'");
	myMenu6.addMenuItem("Ontario", "top.window.location='http://www.thenunezteam.com/resources-inland-onta.html'");
	myMenu6.addMenuItem("Rancho Cucamonga", "top.window.location='http://www.thenunezteam.com/resources-inland-rancho.html'");
	myMenu6.addMenuItem("Rialto", "top.window.location='http://www.thenunezteam.com/resources-inland-rial.html'");
	myMenu6.addMenuItem("San Bernardino", "top.window.location='http://www.thenunezteam.com/resourcesin-sanbernardino-realestate.html'");
	
    window.myMenu4 = new Menu("Resources");
    myMenu4.addMenuItem("Free Pre-Qualification", "top.window.location='http://www.thenunezteam.com/MortgageQualify.asp'");
    myMenu4.addMenuItem("Mortgage Calculator", "top.window.location='http://thenunezteam.mlsb.com/mls/mortcalc.cfm?cid=2846'");
    myMenu4.addMenuItem("Real Estate Listing Forms", "top.window.location='http://www.thenunezteam.com/resources-realestate.html'");
	myMenu4.addMenuItem(myMenu6, "top.window.location='http://www.thenunezteam.com/resources-inland.html'");
	myMenu4.addMenuItem("News - Real Estate", "top.window.location='http://www.thenunezteam.com/resources-news.asp'");
	myMenu4.addMenuItem("Newsletters", "top.window.location='http://www.thenunezteam.com/resources-newsletters.html'");
	myMenu4.addMenuItem("Nunez Team Investments", "top.window.location='http://www.thenunezteam.com/resources-nunezteam.html'");
	myMenu4.addMenuItem("Link To Us", "top.window.location='http://www.thenunezteam.com/resources-links.html'");
//    myMenu4.addMenuItem("Download", "top.window.location='http://home.netscape.com/download/'");
  //  myMenu4.menuItemBgColor = "yellow";
    //myMenu4.fontColor = "blue";

    //window.my5 = new Menu("Seminars and Workshops");
	window.myMenu5 = new Menu("Contact Us");
    myMenu5.addMenuItem("Map", "top.window.location='http://www.thenunezteam.com/contactus-officedir.html'");
	
	
	
	
   // window.myMenu8 = new Menu("Inland Cities");
   // myMenu8.addMenuItem(myMenu2,"top.window.location='Reiki.html'");
   // myMenu8.addMenuItem(myMenu3,"top.window.location='LifeCoach.html'");
  //  myMenu8.addMenuItem(myMenu4,"top.window.location='Counseling.html'");
   // myMenu8.addMenuItem("Seminars and Workshops", "top.window.location='Seminars.html'");


    myMenu.writeMenus();
}