function callMenu() { var menui = new Array(); var menul = new Array(); //If you want to add more items, make sure the numbers stay in order and start with 0 //You can remove an item, but the numbers have to still stay in order from 0, 1, 2, 3, etc. //Put the name of the link in the menui array //Put the href of the link in the menul array menui[0]="Products"; menui[1]="Events"; menui[2]="Archive"; menui[3]="Articles"; menui[4]="Resources"; menui[5]="Find Us"; menui[6]="Home"; //menui[7]="Name"; //menui[8]="Name"; //menui[9]="Name"; menul[0]="products.htm"; menul[1]="events.htm"; menul[2]="archive.htm"; menul[3]="articles.htm"; menul[4]="resources.htm"; menul[5]="findus.htm"; menul[6]="index.htm"; //menul[7]="page.htm"; //menul[8]="page.htm"; //menul[9]="page.htm"; for (i=0;i<=menui.length-1;i++) { document.write(''+menui[i]+'') } }