﻿// this script will make more sense viewed in GoLive or Dreamweaver than MS Notepad
var beachcomber_menu_structure = // declares the variable "beachcomber_menu_structure" - variable is a chunk of code designed to be called upon externally
{								
// **this page contains only the menu, not the actual animation script for the menu**
// the line below opens up the "hot tub lineup" menu structure, {'s contain subfolders}
	"hottublineup-nav": {_options: { cssclass:"hottublineup" },// the css class defines the style
		"Our Product Lines": { _options: { link:"/hot-tub-lineup/our-product-lines.asp" },
			"700 Series" : "/hot-tub-lineup/our-product-lines/700-series.asp",
			"500 Series" : "/hot-tub-lineup/our-product-lines/500-series.asp",
			"300 Series" : "/hot-tub-lineup/our-product-lines/300-series.asp"
							},// closes our-product-lines.asp's subfolder
		"Designed for Comfort": "/hot-tub-lineup/designed-for-comfort.asp",
		"Hybrid Hot Tub": "/hot-tub-lineup/hybrid-hot-tub.asp",
		"Top 5 Picks": "/hot-tub-lineup/top-5-best-sellers.asp",
		"Accessories": { _options: { link:"/hot-tub-lineup/accessories/default.asp" },
			"Water Care Products": "/hot-tub-lineup/accessories/water-care-products/beachcomber-cares.asp",
			"Hot Tub Covers": "/hot-tub-lineup/accessories/hot-tub-covers.asp",
			"Hot Tub Accessories": "/hot-tub-lineup/accessories/hot-tub-accessories.asp",
			"Clothing": "/hot-tub-lineup/accessories/clothing.asp"
							}
						},//closes hottublineup-nav subfolder
	
	"hottubbenefits-nav": { _options: { cssclass:"hottubbenefits" },
		"A Vacation at Home": "/hot-tub-benefits/why-buy-a-hot-tub.asp",
		"FAQs" : "/hot-tub-benefits/frequently-asked-questions.asp",
		"Health Benefits" : "/hot-tub-benefits/health-benefits/default.asp",
		"Investing in Happiness": "/hot-tub-benefits/investing-in-happiness.asp"
						},

	
	"customercare-nav": { _options: { cssclass:"customercare" },
		"Our Guarantee": "/customer-care/our-guarantee.asp",
		"Easy Care": "/customer-care/easy-care.asp",
		"Hot Tub Installations" : { _options: { link:"/customer-care/hot-tub-installations/default.asp" },
			"Steps to Install": "/customer-care/hot-tub-installations/steps-to-install.asp",
			"Perfect Placement": "/customer-care/hot-tub-installations/perfect-placement.asp",
			"Installation Ideas": "/customer-care/hot-tub-installations/installation-ideas.asp"
									},
		"Stay Informed": "/customer-care/stay-informed.asp",
		"Download Manuals" : "/customer-care/download-manuals.asp"
						},
	
	"aboutbeachcomber-nav": {_options: { cssclass:"aboutbeachcomber" },
		"Our Values": {_options: {link:"/about-beachcomber/our-values/" },
		"Community Support": "/about-beachcomber/our-values/community-support.asp"},
		"Our Founder" : { _options: { link:"/about-beachcomber/our-founder/" },
		"Keith's Blog" : "http://beachcomber-hottubs.blogspot.com"
						},
		"Our History" : "/about-beachcomber/our-history.asp",
		"Development Centers": "/about-beachcomber/development-centers/default.asp",
		"Business Opportunity": "/store-opportunities/default.asp",
		"Our Environment": "/about-beachcomber/our-environment.asp",
							},	
};// closes the beachcomber_menu_structure variable