<!--
// 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("SELECT A PAGE",
"Home",
"Foam Mattresses",
"Latex Matresses",
"Airbeds",
"Adjustable Beds",
"Memory Foam Pillows",
"Memory Foam Pads",
"- Order Pads Now",
"Ultra Toppers",
"Sleep Disorders",
"Testimonials",
"Guarantees",
"Links",
"Site Map",
"Contact Us");
// This array hold the URLs of the pages.
var urls = new makeArray("",
"index.html",
"mattress-menu.htm",
"latex-matress.htm",
"airbeds.htm",
"adjustable-bed-orthomatic-6000.htm",
"memory-foam-pillow-menu.htm",
"memory-foam-mattress_pad.htm",
"order-memory-foam-topper.htm",
"upholstered-mattress-topper.htm",
"c_sleep-apnea.htm",
"testimonials.htm",
"shopping-guarantee.htm",
"links.htm",
"heavenly-sleep-site-map.htm",
"contactus.htm");
// 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];  
}
}
//-->

