<!--
// Array Function
function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}
// This array holds the descriptions and names of the pages.
var pages = new makeArray("&#149; site menu &#149;",
						  "LOGIN",
                          "HOME",
                          "COMPANY",
                          "- Company Profile",
                          "- Corporate Philosophy",
                          "- Yakult's History",
                          "- Yakult's Timeline",
                          "- Yakult Today",
                          "- Marketing in Australia",
                          "- Yakult Central Institute",
                          "PRODUCT",
                          "- What is Yakult?",
                          "- Yakult LIGHT",
                          "- Yakult & Your Diet",
                          "- How is Yakult Made?",
                          "- Where to Purchase Yakult",
                          "NEWS",
                          "- Yakult's 75th Anniversay",
                          "- 15 Years in Australia",
                          "- 5 Years in Australia",
                          "- Corporate Sponsorships",
                          "NUTRITION",
                          "- Nutritional Information",
                          "- What are Bacteria?",
                          "- Intestinal Flora",
                          "- Probiotics",
                          "- The Digestive System",
                          "- Fermented Foods",
                          "- Functional Foods",
                          "- Glossary of Terms",
                          "EDUCATION",
                          "- Yakult Information Service",
                          "- Education Kits",
                          "- Factory Tours",
                          "- School Incursions",
                          "- Community Talks",
                          "PUBLICATIONS",
                          "- Inside Matters",
                          "- Probiotica",
                          "FAQs",
                          "- General Q&A",
                          "- Bacteria Q&A",
                          "- Health Q&A",
                          "- Nutrition Q&A",
                          "CAREERS",
                          "CONTACT",
                          "- Feedback & Query Form",
                          "- Yakult Australia & NZ",
                          "- Yakult Worldwide",
                          "HOME");
// This array hold the URLs of the pages.
var urls = new makeArray("",
                         "science01.asp",
                         "index.html",
                         "company01.htm",
                         "company01.htm",
                         "company02.htm",
                         "company03.htm",
                         "company04.htm",
                         "company05.htm",
                         "company06.htm",
                         "company07.htm",
                         "product01.htm",
                         "product01.htm",
                         "product02.htm",
                         "product03.htm",
                         "product04.htm",
                         "product05.htm",
                         "news01.htm",
                         "news01.htm",
                         "news02.htm",
                         "news03.htm",
                         "news04.htm",
                         "health01.htm",
                         "health01.htm",
                         "health02.htm",
                         "health03.htm",
                         "health04.htm",
                         "health05.htm",
                         "health06.htm",
                         "health07.htm",
                         "health08.htm",
                         "education01.htm",
                         "education01.htm",
                         "education02.htm",
                         "education03.htm",
                         "education04.htm",
                         "education05.htm",
                         "publications01.htm",
                         "publications01.htm",
                         "publications02.htm",
                         "faqs01.htm",
                         "faqs01.htm",
                         "faqs02.htm",
                         "faqs03.htm",
                         "faqs04.htm",
                         "careers01.htm",
                         "contact01.htm",
                         "contact01.htm",
                         "contact02.htm",
                         "contact03.htm",
                         "index.html");
// This function determines which page is selected and goes to it.
function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}
// The select menu will be displayed wherever you place this code.
document.write('<FORM><SELECT NAME = "menu" class="jumpmenu" onChange = "goPage(this.form)">');
    for (var i = 0; i < pages.length; i++) {
    document.write('<OPTION>' + pages[i]);
    }
document.write('</SELECT></FORM>');
//-->
