

// NOTE: If you use a ' add a slash before it like this \'

// Create arrays for the links and the titles to go with them.

menuLinks = new Array (

                        "http://amcreativityassoc.org/index.htm",
                        "http://amcreativityassoc.org/about.htm",
                        "http://amcreativityassoc.org/chapters.htm",
                        "http://amcreativityassoc.org/InternationalLinks",
                        "http://amcreativityassoc.org/membersonly/MembersOnly.htm",
                        "http://amcreativityassoc.org/memberbenefits.htm",
                        "http://amcreativityassoc.org/ACAPresspress.htm",
                        "http://amcreativityassoc.org/creativityreadings.html",
                        "http://amcreativityassoc.org/toolsindex.htm",
                        "http://amcreativityassoc.org/acaleadership.htm",
                        "http://amcreativityassoc.org/governance.htm",
                        "http://amcreativityassoc.org/awardslist.htm",
                        "http://amcreativityassoc.org/pastconferences.htm",
                        "http://amcreativityassoc.org/2006Conf.htm",
                        "http://www.creativitycollege.org/index.php",
                        "http://amcreativityassoc.org/bibliography.htm",
                        "http://amcreativityassoc.org/memberservices.htm",
                        "http://amcreativityassoc.org/consultantsdirectory.htm",
                        "http://amcreativityassoc.org/interview-index.htm",
                        "http://amcreativityassoc.org/chapteronly/chapterresources.htm",
                        "http://amcreativityassoc.org/boardonly/boardresourcesonly.htm",
                        "http://amcreativityassoc.org/sitemap.htm",
                        "http://amcreativityassoc.org/contact.htm"

                        )

menuTitles = new Array (


                        "home",
                        "about aca",
                        "chapters & societies",
                        "international creativity",
                        "aca members only",
                        "join aca",
                        "aca publications",
                        "creative readings",
                        "creativity tools",
                        "aca leadership",
                        "aca governance",
                        "aca awards",
                        "past intl conferences",
                        "2006 intl conference",
                        "creativity college",
                        "bibliography",
                        "member services",
                        "creativity services",
                        "creativity@work",
                        "chapter resources",
                        "board only",
                        "site map",
                        "contact"
                        )
                        
// Arrays are created. Now we make a function to code all the menu items and send to browser.

function makeMenu() {

            document.write("<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"style=\"background-color:rgb(0,0,51);\"><tr colspan = \"2\"><td><br><br></td></tr><tr><td>");
            document.write("<img src=\"picts/spacer.gif\" height=\"225\" width=\"5\"><br>");
            document.write("</td><td valign=\"bottom\">");
            document.write("<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"140\" class=\"menulinks\">");


              for (i = 0; i<menuLinks.length; i++)
                        {
                        document.write("<tr><td class=\"menu\">");
                        document.write("<a href=\"" + menuLinks[i] + "\">" + "<span style=\"color:white;\" onMouseOver=\"this.style.color='#49bdef';\" onMouseOut = \"this.style.color='white';\">" + menuTitles[i] + "</span></a><br></td></tr>");
                        
                      }
                      
            document.write("</td></tr></table></td></tr><tr><td colspan=\"2\"><br><br></td></tr></table>")
}

// Call the function

makeMenu()



