// ------------------------------------------------------- // stop javascript errors // ------------------------------------------------------- function stopError() { return true; } window.onerror = stopError; // ------------------------------------------------------- // use this section to edit menu items // ------------------------------------------------------- var menutext = new Array() var menulink = new Array() menutext[0] = "FAQ"; menulink[0] = "/FAQ.html"; menutext[1] = "Contact Us"; menulink[1] = "/contact.html"; menutext[2] = "About Us"; menulink[2] = "/about.html"; menutext[3] = "Return/Refund"; menulink[3] = "/returns_policy.html"; menutext[4] = "Privacy"; menulink[4] = "/privacy_policy.html"; menutext[5] = "Letters"; menulink[5] = "/letters.html"; menutext[6] = "Site Map"; menulink[6] = "/site_map.html"; menutext[7] = "Register for FREE Pillow"; menulink[7] = "/free_pillow_give_away.html"; menutext[8] = "newline"; menulink[8] = "/.html"; menutext[9] = "Links" menulink[9] = "/links.html"; menutext[10] = "Gift Certificates"; menulink[10] = "/gift_certificate.html"; menutext[11] = "Color Analysis"; menulink[11] = "coming_soon.html"; // ------------------------------------------------------- // only edit this to effect the styles of the menu items // ------------------------------------------------------- document.write(""); // ------------------------------------------------------- // probably a good idea to leave the rest alone // ------------------------------------------------------- document.write("

"); document.write("
"); for(i=0; i < menutext.length-1; i++) { if(menutext[i]=="newline" || menulink[i]=="newline"){ var link = "
"; document.write(link); } else { var link = "" + menutext[i] + "" var b = i + 1; if(menutext[b]!="newline" && menulink[b]!="newline"){ link = link + "  "; } document.write(link); } } var link = "" + menutext[i] + ""; document.write(link); document.write("
");