var menu2 = new MENU("top");        // new horizontal menu

// here are our menu items (level, height, text, [URL], [target], [JavaScript]):

menu2.entry(1, 20, "<B>Home",   "index.htm");

menu2.entry(1, 20, "<B>Products",   "");
menu2.entry(2, 15, "<B>Roses", "roses.htm");
menu2.entry(2, 15, "<B>Other Flowers", "flowers-type.htm
	");
  menu2.entry(3, 15, "<B>All White", "all-white.htm");
  menu2.entry(3, 15, "<B>Tulips", "tulips.htm");
  menu2.entry(3, 15, "<b>Exotic</b>", "exotic-plants.htm");
  menu2.entry(3, 15, "<B>Carnations", "carnations.htm");
  menu2.entry(3, 15, "<B>Orchids", "orchids.htm");
  menu2.entry(3, 15, "<b>Lillies</b>", "lilies.htm");
  menu2.entry(3, 15, "<B>Sunflowers", "sunflowers-type.htm
	");
menu2.entry(2, 15, "<b>Easter</b>",     "easter.htm");
menu2.entry(2, 15, "<B>Spring", "season.htm");
menu2.entry(2, 15, "<B>Plants", "plants.htm");

menu2.entry(2, 15, "<B>Gift Baskets", "baskets.htm");

menu2.entry(2, 15, "<B>Modern/Contemporary", "contemporary.htm");
menu2.entry(2, 15, "<B>Corporate Gifts", "Corporate-gifts.htm");
menu2.entry(2, 15, "<B>Best Sellers", "best-sellers.htm");
menu2.entry(2, 15, "<B>Specials Under $50", "specials.htm");


menu2.entry(1, 20, "<B>Occasions ",   "");
menu2.entry(2, 15, "<b>Birthday</b>",     "birthday.htm");
menu2.entry(2, 15, "<b>New Baby</b>",     "newbaby.htm");
menu2.entry(2, 15, "<b>Anniversary</b>",     "anniversary.htm");
menu2.entry(2, 15, "<b>Wedding</b>",     "wedding.htm");
menu2.entry(2, 15, "<b>Love & Romance</b>",   "love and romance.htm");
menu2.entry(2, 15, "<b>For Him</b>",   "for-him.htm");
menu2.entry(2, 15, "<b>Prom </b>",   "prom.htm");
menu2.entry(2, 15, "<b>Holiday & Season</b>",   "");
     menu2.entry(3, 15, "<b>St. Patrick's Day</b>",     "st-patricks-day.htm");
     menu2.entry(3, 15, "<b>Easter</b>",     "easter.htm");
     menu2.entry(3, 15, "<b>Christmas</b>",     "christmas.htm");
     menu2.entry(3, 15, "<b>Hanukkah</b>",     "hanukkah.htm");
     menu2.entry(3, 15, "<b>Valentines Day</b>",     "valentines-day.htm");
     menu2.entry(3, 15, "<b>New Year's</b>",     "new-years.htm");
     menu2.entry(3, 15, "<b>Haloween</b>",     "haloween.htm");
     menu2.entry(3, 15, "<b>Mother's Day</b>",     "mothers-day.htm");

menu2.entry(2, 15, "<b>Thank You</b>",     "thankyou.htm");
menu2.entry(2, 15, "<b>Congratulations</b>",     "congratulations.htm");
menu2.entry(2, 15, "<b>Get Well</b>",     "getwell.htm");
menu2.entry(2, 15, "<b>Sympathy & Funeral</b>",     "sympathy.htm"); 
menu2.entry(2, 15, "<b>Just Because</b>",     "just-because.htm");

menu2.entry(1, 20, "<b>Events</b>",     "");
menu2.entry(2, 15, "<b>Beach Weddings</b>",     "wedding_specials.htm");
menu2.entry(2, 15, "<b>Banquets</b>",     "banquets.htm");
menu2.entry(2, 15, "<b>Prom</b>",     "prom.htm");
menu2.entry(2, 15, "<b>Reunions</b>",     "reunions.htm");
menu2.entry(2, 15, "<b>Parties</b>",     "parties.htm");





menu2.entry(1, 20, "<b>Take A Break</b>",     "");
menu2.entry(2, 15, "<B>Local Flowers?", "flower-origins.htm");
menu2.entry(2, 15, "<B>Flower Care", "flower-care.htm");
menu2.entry(2, 15, "<B>Flower Meanings", "flower-meaning.htm");
menu2.entry(2, 15, "<B>Flower Horoscope", "flower-horoscope.htm");
menu2.entry(2, 15, "<B>Flower Calender", "flower-calendar.htm");

menu2.entry(2, 15, "<B>View Guestbook", "");
menu2.entry(2, 15, "<B>Send A Postcard", "");
menu2.entry(2, 15, "<B>Silly Games", "games.htm");

menu2.entry(1, 20, "<b>Help</b>",     "");
    menu2.entry(2, 20, "<b>About Us</b>",     "about.htm");
    menu2.entry(2, 15, "<B>Delivery & Policies", "Policies.htm");
    menu2.entry(2, 15, "<B>Contact Us", "contact.htm");
    menu2.entry(2, 15, "<B>Site Map", "sitemap.htm");
    menu2.entry(2, 15, "<B>Search", "search.htm");




menu2.mainTop = 0;                 // menu top position in pixels
menu2.mainLeft = 145;               // menu left position in pixels
menu2.mainBGColor = "navigation/back.jpg";     // menu background
menu2.floatMenu = false;            // we want a floating menu OTHERWISE FALSE
menu2.create();                     // create the menu
//=======================================================================================
//--> 

