function onLoad() {
window.onResize = onLoad;
		loadMenus();
}

function loadMenus() {
//Import Scene Section
    window.news = new Menu("news");
//    news.addMenuItem("IR TESTING", "location='/investor/ir_template.html'");
//    news.addMenuItem("Testing1", "location='/news/test_2-21.html'");
//    news.addMenuItem("Testing2", "location='/news/testing.html'");
news.addMenuItem("Automotive Scene", "location='/import/index.html'");
	//news.addMenuItem("On Demand 2001", "location='/news/ondemand2001.html'");
    news.addMenuItem("Automotive Coverage", "location='/import/coverage.html'");
    
  
				news.menuItemWidth = 160;
				news.menuItemHeight = 15;
    news.disableDrag = true;

//Models Network Section

			
//The Fashion Models section
    window.fashion = new Menu("Fashion Models");
    fashion.addMenuItem("Female Models", "location='/modelsnetwork/fashion_women_models.html'");

    fashion.addMenuItem("Male Models", 
"location='/modelsnetwork/fashion_men_models.cfm'");

				fashion.menuItemWidth = 100;
				fashion.menuItemHeight = 15; 



//The end of Fashion section

    window.products = new Menu("products");
    products.addMenuItem("Models Network", "location='/modelsnetwork/index.php'");
    
products.addMenuItem("Models", "location='/modelsnetwork/models.php'");
   
				products.menuItemWidth = 150;
				products.menuItemHeight = 15;
    products.disableDrag = true;

//Services Section
 
    window.music = new Menu("Music");
///    music.addMenuItem("Featured Artists", "location='/entertainment/featured.cfm'");
    music.addMenuItem("Music Reviews", "location='/entertainment/musicreviews/'");
				music.menuItemWidth = 100;
				music.menuItemHeight = 15;

    window.dir_support = new Menu("Dance Clubs");
    dir_support.addMenuItem("Reviews & Ratings", "location='/entertainment/dance.html'");
				dir_support.menuItemWidth = 130;
				dir_support.menuItemHeight = 15;

    window.events = new Menu("Events");
    events.addMenuItem("Parties", "location='/entertainment/parties.html'");
				events.menuItemWidth = 70;
				events.menuItemHeight = 15;
    window.comics = new Menu("Comics");
    comics.addMenuItem("Daily Comics", "location='/entertainment/comics_daily.html'");
    comics.addMenuItem("Weekly Comics", "location='/entertainment/comics_weekly.html'");
    comics.addMenuItem("Monthly Comics", "location='/entertainment/comics_monthly.html'");
				comics.menuItemWidth = 120;
				comics.menuItemHeight = 15;

    window.postcards = new Menu("E-Cards");
    postcards.addMenuItem("Create Free Greeting Cards","window.open('/entertainment/postcards.html','subWindow','height=500,width=750,location=yes,menubar=yes,status=yes,toolbar=yes,scrollbars=yes,resizable=yes')"); 
    postcards.addMenuItem("Pick Up Your Free Greeting Card","window.open('/entertainment/postcardpickup.html','subWindow','height=500,width=750,location=yes,menubar=yes,status=yes,toolbar=yes,scrollbars=yes,resizable=yes')"); 
    				postcards.menuItemWidth = 210;
				postcards.menuItemHeight = 15;

 
    window.services = new Menu("services");
    services.addMenuItem("Entertainment", "location='/entertainment/index.html'");
    services.addMenuItem(music);
//    services.addMenuItem(events);
//    services.addMenuItem(dir_support);
//    services.addMenuItem(comics);
//    services.addMenuItem(postcards);


				services.menuItemWidth = 110;
				services.menuItemHeight = 15;
    services.disableDrag = true;

//Literature Section 
				window.support = new Menu("support");
       support.addMenuItem("Literature", "location='/literature/index.html'");    
       support.addMenuItem("Verse", "location='/literature/verse.html'");
       support.addMenuItem("Poetry", "location='/literature/poetry.html'");
    				support.menuItemWidth = 75;
				support.menuItemHeight = 15;
      support.disableDrag = true;

//Fashion Section 
				window.fashions = new Menu("fashions");
        fashions.addMenuItem("Fashion", "location='/fashion/index.html'");    
        fashions.addMenuItem("Clothing", "location='/fashion/clothing.html'");
       
    				fashions.menuItemWidth = 120;
				fashions.menuItemHeight = 15;
    fashions.disableDrag = true;

//Relationships Section 
				window.relation = new Menu("relation");
     relation.addMenuItem("Relationships/Advice", "location='/discussion/index.html'");    
     relation.addMenuItem("Counseling", "location='/discussion/counseling.html'");
     				relation.menuItemWidth = 135;
				relation.menuItemHeight = 15;
    relation.disableDrag = true;

//Customer Service Section 
				window.help = new Menu("help");
       help.addMenuItem("Site Index", "location='/customer_service/siteindex.html'");    
//       help.addMenuItem("FAQ", "location='/customer_service/faq.html'");
       help.addMenuItem("Contact Us", "location='/customer_service/contact.html'");
       help.addMenuItem("Privacy Policy", "location='/customer_service/privacy.html'");
    				help.menuItemWidth = 100;
				help.menuItemHeight = 15;
      help.disableDrag = true;

//Studio Section 
  		window.about = new Menu("about");
  about.addMenuItem("About EFI", "location='/about/index.html'");    
//    about.addMenuItem("CEO Message", "location='/about/message_ceo.html'");
//    about.addMenuItem("Worldwide Offices", "location='/about/locations.html'");
//    about.addMenuItem("Timeline", "location='/about/timeline.html'");
				about.menuItemWidth = 130;
				about.menuItemHeight = 15;
    about.disableDrag = true;
    about.writeMenus();
}

