//=====================================================================================================//
// Javascript created so that summaries displayed on various pages only need to be changed in 1 place. //
// Author:  Carl Gruenenfelder                                      email: c_gruenenfelder@hotmail.com //
// Created: 21.01.2009                                                                                 //
//=====================================================================================================//
//  FUNCTIONs                                                                                          //
//-----------------------------------------------------------------------------------------------------//
//  fnDisplayMenu - Insert into HTML element of given ID, the innerHTML of given summary name which is //
//                  stored in the menu array, & set element's display to given DisplayType.            //
//  Syntax:  fnDisplayMenu( vDivID , vMenuName , vDisplayType )                                        //
//-----------------------------------------------------------------------------------------------------//
//  fnDisplayReference - Insert into HTML element of given ID, the innerHTML of given Ref. name which  //
//                       is stored in the ref. array, & set element's display to given DisplayType.    //
//  Syntax:  fnDisplayReference( vDivID , vReferenceName , vDisplayType )                              //
//-----------------------------------------------------------------------------------------------------//
//  fnDisplaySummary - Insert into HTML element of given ID, the innerHTML of given summary name which //
//                     is stored in the summary array, & set element's display to given DisplayType.   //
//  Syntax:  fnDisplaySummary( vDivID , vSummaryName , vDisplayType )                                  //
//-----------------------------------------------------------------------------------------------------//
//  fnGetElementHeight - Return the Height of HTML element of given ID.                                //
//  Syntax:  fnGetElementHeight( vID )                                                                 //
//-----------------------------------------------------------------------------------------------------//
//  fnGetElementWidth - Return the Width of HTML element of given ID.                                  //
//  Syntax:  fnGetElementWidth( vID )                                                                  //
//=====================================================================================================//
//  ARRAY: menu           Items: site menu                                                             //
//-----------------------------------------------------------------------------------------------------//
//   site_menu                                                                                         //
//=====================================================================================================//
//  ARRAY: menu           Items: section menus                                                         //
//-----------------------------------------------------------------------------------------------------//
//   affiliations_menu                                                                                 //
//   corporate_menu                                                                                    //
//   programs_menu                                                                                     //
//   sanctuaries_menu                                                                                  //
//   services_menu                                                                                     //
//   sitemap_menu                                                                                      //
  //   specialoffers_menu                                                                                //
//=====================================================================================================//
//  ARRAY: menu           Items: sub-section menus                                                     //
//-----------------------------------------------------------------------------------------------------//
//   business_ss_menu                                                                                  //
//   investment_ss_menu                                                                                //
//   profile_ss_menu                                                                                   //
//   spiritual_ss_menu                                                                                 //
//=====================================================================================================//
//  ARRAY: menu           Items: sub-sub-section menus                                                 //
//-----------------------------------------------------------------------------------------------------//
//   astrology_sss_menu                                                                                //
//   breakingnews_sss_menu                                                                             //
//   chastrology_sss_menu                                                                              //
//   consciousness_sss_menu                                                                            //
//   insight_sss_menu                                                                                  //
//   prpgoodman_sss_menu                                                                               //
//   numerology_sss_menu                                                                               //
//=====================================================================================================//
//  ARRAY: menu           Items: sub-sub-sub-section menus                                             //
//-----------------------------------------------------------------------------------------------------//
//   forecast2009_ssss_menu                                                                            //
//   journey2009_ssss_menu                                                                             //
//   journey2010_ssss_menu                                                                             //
//=====================================================================================================//
//  ARRAY: menu           Items:                                                                       //
//-----------------------------------------------------------------------------------------------------//
//   contact_us                                                                                        //
//   corporate_page_menu                                                                               //
//   form_contact_us                                                                                   //
//   form_information_menu                                                                             //
//   form_online_services                                                                              //
//   form_page_menu                                                                                    //
//   free_online_services                                                                              //
//   home_page_menu                                                                                    //
//   investment_sections                                                                               //
//   numerology_sections                                                                               //
//   programs_related                                                                                  //
//   sanctuary_related                                                                                 //
//   sanctuary_sections                                                                                //
//   sebel_pages                                                                                       //
//   spoffers_page_menu                                                                                //
//   spoffers_related                                                                                  //
//                                                                                                     //
//=====================================================================================================//
//  ARRAY: reference      Items:                                                                       //
//-----------------------------------------------------------------------------------------------------//
//   astrologyof2012_info                                                                              //
//   lightworker01                                                                                     //
//   manhattangroup01                                                                                  //
//   obamasensation01                                                                                  //
//   ronnastar01                                                                                       //
//   solara01                                                                                          //
//   solaria01                                                                                         //
//   starwavz01                                                                                        //
//   tomkenyon01                                                                                       //
//   vitamind01                                                                                        //
//                                                                                                     //
//=====================================================================================================//
//  ARRAY: summary        Items:                                                                       //
//-----------------------------------------------------------------------------------------------------//
//   astrology01                                                                                       //
//   bookclub01                                                                                        //
//   breakingnews01                                                                                    //
//   breakingnews_latest01 - 17 March 2009                                                             //
//   breakingnews_latest02 - 01 February 2009                                                          //
//   corporate01                                                                                       //
//   corporateretreat01                                                                                //
//   freecoaching01                                                                                    //
//   newconsciousness01                                                                                //
//   numerology01                                                                                      //
//   numerology02                                                                                      //
//   programs01                                                                                        //
//   resorts01                                                                                         //
//   sebel01                                                                                           //
//   specialoffers01                                                                                   //
//                                                                                                     //
//=====================================================================================================//

//=====================================================================================================//
//  FUNCTIONs                                                                                    BEGIN //
//-----------------------------------------------------------------------------------------------------//
//  FUNCTION: fnDisplayMenu                                                                            //
//-----------------------------------------------------------------------------------------------------//
function fnDisplayMenu(vDivID,vMenuName,vDisplayType)
{
  var vinnerHTML;
  if (vDisplayType=='') { vDisplayType = 'block'; }
  vMenuName  = vMenuName.toLowerCase();
  vinnerHTML = menu[vMenuName];
  document.getElementById(vDivID).innerHTML     = vinnerHTML;
  document.getElementById(vDivID).style.display = vDisplayType;
}

//-----------------------------------------------------------------------------------------------------//
//  FUNCTION: fnDisplayReference                                                                       //
//-----------------------------------------------------------------------------------------------------//
function fnDisplayReference(vDivID,vReferenceName,vDisplayType)
{
  var vinnerHTML;
  if (vDisplayType=='') { vDisplayType = 'block'; }
  vReferenceName = vReferenceName.toLowerCase();
  vinnerHTML   = reference[vReferenceName];
  document.getElementById(vDivID).innerHTML     = vinnerHTML;
  document.getElementById(vDivID).style.display = vDisplayType;
}

//-----------------------------------------------------------------------------------------------------//
//  FUNCTION: fnDisplaySummary                                                                         //
//-----------------------------------------------------------------------------------------------------//
function fnDisplaySummary(vDivID,vSummaryName,vDisplayType)
{
  var vinnerHTML;
  if (vDisplayType=='') { vDisplayType = 'block'; }
  vSummaryName = vSummaryName.toLowerCase();
  vinnerHTML   = summary[vSummaryName];
  document.getElementById(vDivID).innerHTML     = vinnerHTML;
  document.getElementById(vDivID).style.display = vDisplayType;
}

//-----------------------------------------------------------------------------------------------------//
//  FUNCTION: fnGetElementHeight                                                                       //
//-----------------------------------------------------------------------------------------------------//
function fnGetElementHeight(vID)
{
  var vHeight = document.getElementById(vID).offsetHeight;
  document.getElementById('SummaryHeight').value = vHeight;
}

//-----------------------------------------------------------------------------------------------------//
//  FUNCTION: fnGetElementWidth                                                                        //
//-----------------------------------------------------------------------------------------------------//
function fnGetElementWidth(vID)
{
  var vWidth = document.getElementById(vID).offsetWidth;
  document.getElementById('SummaryWidth').value = vWidth;
}

//-----------------------------------------------------------------------------------------------------//
//  FUNCTIONs                                                                                     END  //
//=====================================================================================================//

//=====================================================================================================//
//  ARRAY: menu (NOTE all item names must be lowercase. fn 1st converts name to lowercase.)      BEGIN //
//-----------------------------------------------------------------------------------------------------//
var menu = new Array;
//=====================================================================================================//
//  ARRAY: menu           Items: site menu                                                             //
//=====================================================================================================//
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: site_menu                                                                              //
//-----------------------------------------------------------------------------------------------------//
menu['site_menu']  = '';
menu['site_menu'] += '<H1>Site Menu</H1>';
menu['site_menu'] += '<UL>';
menu['site_menu'] += '  <LI><A HREF="home.htm"         TITLE="Wealthness International Management Home Page"                         >Home</A></LI>';
menu['site_menu'] += '  <LI><A HREF="sanctuaries.htm"  TITLE="Visit our Health & Healing Resorts & Sanctuaries"                      >Resorts & Sanctuaries</A></LI>';
menu['site_menu'] += '  <LI><A HREF="programs.htm"     TITLE="View our Health & Well Being Program Section"                          >Programs</A></LI>';
menu['site_menu'] += '  <LI><A HREF="affiliations.htm" TITLE="View our Affiliations section"                                         >Affiliations</A></LI>';
menu['site_menu'] += '  <LI><A HREF="services.htm"     TITLE="View our Free Online Services page"                                    >Services</A></LI>';
menu['site_menu'] += '  <LI><A HREF="corporate.htm"    TITLE="View the Wealthness International Management Corporate pages"          >Corporate</A></LI>';
menu['site_menu'] += '  <LI><A HREF="spOffer.htm"      TITLE="Wealthness International Management Special Offers - Not to be missed!">Special Offers</A></LI>';
menu['site_menu'] += '  <LI><A HREF="sitemap.htm"      TITLE="Wealthness International Management Site Map"                          >Sitemap</A></LI>';
menu['site_menu'] += '</UL>';
//=====================================================================================================//
//=====================================================================================================//
//  ARRAY: menu           Items: section menus                                                         //
//=====================================================================================================//
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: affiliations_menu                                                                      //
//-----------------------------------------------------------------------------------------------------//
menu['affiliations_menu']  = '';
menu['affiliations_menu'] += '<H1>';
menu['affiliations_menu'] += 'Affiliations Menu';
menu['affiliations_menu'] += '</H1>';
menu['affiliations_menu'] += '<UL>';
menu['affiliations_menu'] += '  <LI><A HREF="affiliations.htm"      TITLE="View the Affiliations Home Page"           >Affiliations</A></LI>';
menu['affiliations_menu'] += '  <LI><A HREF="affHospitality.htm"    TITLE="View the Hospitality Association page"     >Hospitality Association</A></LI>';
menu['affiliations_menu'] += '  <LI><A HREF="affInternetMarket.htm" TITLE="View our Internet Marketing Opportunities" >Internet Marketing</A></LI>';
menu['affiliations_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: corporate_menu                                                                         //
//-----------------------------------------------------------------------------------------------------//
menu['corporate_menu']  = '';
menu['corporate_menu'] += '<H1>';
menu['corporate_menu'] += 'Corporate Menu';
menu['corporate_menu'] += '</H1>';
menu['corporate_menu'] += '<UL>';
menu['corporate_menu'] += '  <LI><A HREF="corporate.htm"  TITLE="View the Corporate Home Page"                   >Corporate</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="company.htm"    TITLE="View the Company description"                   >Company</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="vision.htm"     TITLE="View our Corporate Vision"                      >Vision</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="concept.htm"    TITLE="View our Business Concept"                      >Concept</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="investment.htm" TITLE="View our Investment Opportunities Pages"        >Investment Opportunities</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="business.htm"   TITLE="View our Global Business Opportunity Pages"     >Global Business Opportunity</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="profile.htm"    TITLE="View our Team"s Profiles"                       >Profiles</A></LI>';
menu['corporate_menu'] += '  <LI><A HREF="associates.htm" TITLE="Wealthness International Management Associates" >Associates</A></LI>';
menu['corporate_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: programs_menu                                                                          //
//-----------------------------------------------------------------------------------------------------//
menu['programs_menu']  = '';
menu['programs_menu'] += '<H1>';
menu['programs_menu'] += 'Programs<BR>Section Menu';
menu['programs_menu'] += '</H1>';
menu['programs_menu'] += '<UL>';
menu['programs_menu'] += '  <LI><A HREF="programs.htm"            TITLE="View our Programs Section"             >Programs</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="objectives.htm"          TITLE="View our Program Objectives page"      >Objectives</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="progOverview.htm"        TITLE="View our Program Overview page"        >Overview</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="progCorpRetreats.htm"    TITLE="View our Corporate Retreats page"      >Corporate Retreats</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="progCorpRetServices.htm" TITLE="View our Corporate Retreat Services"   >Corporate Retreat Services</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="progDetails.htm"         TITLE="View our Health & Well Being Programs" >Health & WellBeing Programs</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="progSummary.htm"         TITLE="View our Program Summaries page"       >Program Summaries</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="formCorpRetreat.htm"     TITLE="Plan a Custom Corporate Retreat"       >Custom Corporate Retreats</A></LI>';
menu['programs_menu'] += '  <LI><A HREF="formNewEvent.htm"        TITLE="Apply so that we can arrange events for your programs">New Event Hosting Form</LI>';
menu['programs_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: sanctuaries_menu                                                                       //
//-----------------------------------------------------------------------------------------------------//
menu['sanctuaries_menu']  = '';
menu['sanctuaries_menu'] += '<H1>';
menu['sanctuaries_menu'] += 'Sanctuaries<BR>Section Menu';
menu['sanctuaries_menu'] += '</H1>';
menu['sanctuaries_menu'] += '<UL>';
menu['sanctuaries_menu'] += '  <LI><A HREF="sanctuaries.htm"                    TITLE="View our Health & Healing Sanctuaries section">Health & Healing Sanctuaries</A></LI>';
menu['sanctuaries_menu'] += '  <LI><A HREF="sanctuaries.htm#SpecialSanctuaries" TITLE="View our Special Sanctuaries"                 >Special Sanctuaries</A></LI>';
menu['sanctuaries_menu'] += '  <LI><A HREF="sanctuaries.htm#OtherSanctuaries"   TITLE="View our Other Sanctuaries"                   >Other Sanctuaries</A></LI>';
menu['sanctuaries_menu'] += '  <LI><A HREF="formNewSpa.htm"                     TITLE="Apply to have your Sanctuary listed here"     >New Sanctuary Application</A></LI>';
menu['sanctuaries_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: services_menu                                                                          //
//-----------------------------------------------------------------------------------------------------//
menu['services_menu']  = '';
menu['services_menu'] += '<H1>';
menu['services_menu'] += 'Services Menu';
menu['services_menu'] += '</H1>';
menu['services_menu'] += '<UL>';
menu['services_menu'] += '  <LI><A HREF="services.htm"           TITLE="View our Free Online Services page"              >Services</A></LI>';
menu['services_menu'] += '  <LI><A HREF="greatservice.htm"       TITLE="The New Dynamic of UNITY CONSCIOUSNESS IN ACTION">Great Service Is a Choice!</A></LI>';
menu['services_menu'] += '  <LI><A HREF="education.htm"          TITLE="View our Education & Training page"              >Education & Training</A></LI>';
menu['services_menu'] += '  <LI><A HREF="coaching.htm"           TITLE="View our Online Life Coaching page"              >Online Life Coaching</A></LI>';
menu['services_menu'] += '  <LI><A HREF="formServicesSurvey.htm" TITLE="Please complete our Online Services Survey page" >Online Survey</A></LI>';
menu['services_menu'] += '  <LI><A HREF="insight.htm"            TITLE="Explore our Insight section"                     >Insight</A></LI>';
menu['services_menu'] += '  <LI><A HREF="consciousness.htm"      TITLE="Explore our New Consciousness section"           >New Consciousness</A></LI>';
menu['services_menu'] += '  <LI><A HREF="spiritual.htm"          TITLE="Explore our Spiritual Readings section"          >Spiritual Readings</A></LI>';
menu['services_menu'] += '  <LI><A HREF="astrology.htm"          TITLE="Explore our Astrology section"                   >Astrology</A></LI>';
menu['services_menu'] += '  <LI><A HREF="chineseastrology.htm"   TITLE="Explore our Chinese Astrology section"           >Chinese Astrology</A></LI>';
menu['services_menu'] += '  <LI><A HREF="numerology.htm"         TITLE="Explore our Numerology section"                  >Numerology</A></LI>';
menu['services_menu'] += '  <LI><A HREF="breakingnews.htm"       TITLE="Come visit our Breaking News section"            >Breaking News</A></LI>';
menu['services_menu'] += '  <LI><A HREF="bookclub.htm"           TITLE="Come visit our Book Club section"                >Book Club</A></LI>';
menu['services_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: sitemap_menu                                                                           //
//-----------------------------------------------------------------------------------------------------//
menu['sitemap_menu']  = '';
menu['sitemap_menu'] += '<H1>';
menu['sitemap_menu'] += 'Sitemap<BR>Section Menu';
menu['sitemap_menu'] += '</H1>';
menu['sitemap_menu'] += '<UL>';
menu['sitemap_menu'] += '  <LI><A HREF="sitemap.htm"      TITLE="View our Sitemap for all pages" >Sitemap</A></LI>';
menu['sitemap_menu'] += '  <LI><A HREF="pdfdownloads.htm" TITLE="View our PDF Downloads"         >PDF Downloads</A></LI>';
menu['sitemap_menu'] += '</UL>';





//=====================================================================================================//
//=====================================================================================================//
//  ARRAY: menu           Items: sub-section menus                                                     //
//=====================================================================================================//
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: business_ss_menu                                                                       //
//-----------------------------------------------------------------------------------------------------//
menu['business_ss_menu']  = '';
menu['business_ss_menu'] += '<H1>';
menu['business_ss_menu'] += 'Business Opportunity<BR>Sub-Section Menu';
menu['business_ss_menu'] += '</H1>';
menu['business_ss_menu'] += '<UL>';
menu['business_ss_menu'] += '  <LI><A HREF="business.htm"        TITLE="Business Opportunity Summary"               >Summary</A></LI>';
menu['business_ss_menu'] += '  <LI><A HREF="businessLicense.htm" TITLE="Business Opportunity Licensing or Franchise">Licensing or Franchise</A></LI>';
menu['business_ss_menu'] += '  <LI><A HREF="businessService.htm" TITLE="Business Opportunity Services"              >Services</A></LI>';
menu['business_ss_menu'] += '  <LI><A HREF="formNewSpa.htm"      TITLE="New Resort/Sanctuary/Spa Application form"  >New Resort Application</A></LI>';
menu['business_ss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: investment_ss_menu                                                                     //
//-----------------------------------------------------------------------------------------------------//
menu['investment_ss_menu']  = '';
menu['investment_ss_menu'] += '<H1>';
menu['investment_ss_menu'] += 'Investment Menu';
menu['investment_ss_menu'] += '</H1>';
menu['investment_ss_menu'] += '<UL>';
menu['investment_ss_menu'] += '  <LI><A HREF="investment.htm"     TITLE="Investment Opportunities Main Page"              >Investment Opportunities</A></LI>';
menu['investment_ss_menu'] += '  <LI><A HREF="invbackground.htm"  TITLE="Investment Opportunities Background Information" >Background Information</A></LI>';
menu['investment_ss_menu'] += '  <LI><A HREF="formInvestment.htm" TITLE="Investment Opportunities Information Application">Information Application</A></LI>';
menu['investment_ss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: profile_ss_menu                                                                        //
//-----------------------------------------------------------------------------------------------------//
menu['profile_ss_menu']  = '';
menu['profile_ss_menu'] += '<H1>Profiles</H1>';
menu['profile_ss_menu'] += '<UL>';
menu['profile_ss_menu'] += '  <LI><A HREF="profilePG.htm"    TITLE="Pauline Goodman - Managing Director"      >Pauline Goodman</A></LI>';
menu['profile_ss_menu'] += '  <LI><A HREF="profileJRog.htm"  TITLE="John Rogerson - Associated Partner"       >John Rogerson</A></LI>';
menu['profile_ss_menu'] += '  <LI><A HREF="profileNAdi.htm"  TITLE="Nik Adis - Associated Partner"            >Nik S Adis</A></LI>';
menu['profile_ss_menu'] += '  <LI><A HREF="profileNIns.htm"  TITLE="Noel Insley - Associated Facilitator"     >Noel Insley</A></LI>';
menu['profile_ss_menu'] += '  <LI><A HREF="profileJWoo.htm"  TITLE="Jayanti Woods - Associated Facilitator"   >Jayanti Woods</A></LI>';
menu['profile_ss_menu'] += '  <LI><A HREF="formNewEvent.htm" TITLE="New Event Hosting Application"            >New Member Application</A></LI>';
menu['profile_ss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: spiritual_ss_menu                                                                      //
//-----------------------------------------------------------------------------------------------------//
menu['spiritual_ss_menu']  = '';
menu['spiritual_ss_menu'] += '<H1>';
menu['spiritual_ss_menu'] += 'Spiritual Readings';
menu['spiritual_ss_menu'] += '</H1>';
menu['spiritual_ss_menu'] += '<UL>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="journey.htm"        TITLE="Visit the Astrology Life Journey Section"    >Astrology - Life Journey</A></LI>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="forecast.htm"       TITLE="Visit the Chinese Astrology yearly Forecasts">Chinese Astrology Forecasts</A></LI>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="formNumReading.htm" TITLE="Visit the Numerology Readings Page"          >Numerology - Readings</A></LI>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="worldreview.htm"    TITLE="Visit the Numerology World Review Section"   >Numerology - World Reviews</A></LI>';
menu['spiritual_ss_menu'] += '</UL>';
menu['spiritual_ss_menu'] += '<BR>';
menu['spiritual_ss_menu'] += '<H1>';
menu['spiritual_ss_menu'] += 'Spiritual Information';
menu['spiritual_ss_menu'] += '</H1>';
menu['spiritual_ss_menu'] += '<UL>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="breakingnews.htm"   TITLE="Visit the Insight Section"                   >Breaking News</A></LI>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="bookclub.htm"       TITLE="Visit the Book Club Page"                    >Book Club</A></LI>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="insight.htm"        TITLE="Visit the Insight Section"                   >Insight</A></LI>';
menu['spiritual_ss_menu'] += '  <LI><A HREF="consciousness.htm"  TITLE="Visit the New Consciousness Section"         >New Consciousness</A></LI>';
menu['spiritual_ss_menu'] += '</UL>';





//=====================================================================================================//
//=====================================================================================================//
//  ARRAY: menu           Items: sub-sub-section menus                                                 //
//=====================================================================================================//
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: astrology_sss_menu                                                                     //
//-----------------------------------------------------------------------------------------------------//
menu['astrology_sss_menu']  = '';
menu['astrology_sss_menu'] += '<H1>';
menu['astrology_sss_menu'] += 'Astrology';
menu['astrology_sss_menu'] += '</H1>';
menu['astrology_sss_menu'] += '<UL>';
menu['astrology_sss_menu'] += '  <LI><A HREF="astroSSSummaries.htm" TITLE="Astrology - Basic Star Sign Summaries">Star Sign Summaries</A></LI>';
menu['astrology_sss_menu'] += '  <LI><A HREF="journey.htm"          TITLE="Astrology - Life Journey Section">Life Journey Readings</A></LI>';
menu['astrology_sss_menu'] += '</UL>';
//   breakingnews_sss_menu                                                                             //
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: breakingnews_sss_menu                                                                  //
//-----------------------------------------------------------------------------------------------------//
menu['breakingnews_sss_menu']  = '';
menu['breakingnews_sss_menu'] += '<H1>';
menu['breakingnews_sss_menu'] += 'Breaking News Menu';
menu['breakingnews_sss_menu'] += '</H1>';
menu['breakingnews_sss_menu'] += '<UL>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20100701.htm" TITLE="Increasing Intensity of the Chaotic Node: The Gulf of Mexico" >01 July 2010</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20100121.htm" TITLE="A Hathor Planetary Message through Tom Kenyon"                >21 January 2010</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20100107.htm" TITLE="Finding our future in the cycles of the past"                 >07 January 2010</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20090615.htm" TITLE="Messages from The Group"                                      >15 June 2009</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20090408.htm" TITLE="Influencing Societal & Global Change"                         >08 April 2009</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20090317.htm" TITLE="Technology Download on July 21 and 22, 2009"                  >17 March 2009</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20090202.htm" TITLE="Who will seek the greatest good for ALL?"                     >01 February 2009</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20090121.htm" TITLE="The Inauguration Day of Barack Obama"                         >20 January 2009</A></LI>';
menu['breakingnews_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="brnews20090101.htm" TITLE="Be Open to the New!"                                          >01 January 2009</A></LI>';
menu['breakingnews_sss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: chastrology_sss_menu                                                                   //
//-----------------------------------------------------------------------------------------------------//
menu['chastrology_sss_menu']  = '';
menu['chastrology_sss_menu'] += '<H1>';
menu['chastrology_sss_menu'] += 'Chinese Astrology';
menu['chastrology_sss_menu'] += '</H1>';
menu['chastrology_sss_menu'] += '<UL>';
menu['chastrology_sss_menu'] += '  <LI><A HREF="animalsummaries.htm" TITLE="Basic Animal Sign Summaries">Animal Sign Summaries</A></LI>';
menu['chastrology_sss_menu'] += '  <LI><A HREF="forecast.htm"        TITLE="Yearly Forecast Section"    >Free Yearly Forecasts</A></LI>';
menu['chastrology_sss_menu'] += '  <LI><A HREF="chineseNewYears.htm" TITLE="Detailed list of Chinese New Year Dates ( 1900 - 2043 ).">Chinese New Year Dates</A></LI>';
menu['chastrology_sss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: consciousness_sss_menu                                                                 //
//-----------------------------------------------------------------------------------------------------//
menu['consciousness_sss_menu']  = '';
menu['consciousness_sss_menu'] += '<H1>';
menu['consciousness_sss_menu'] += 'New Consciousness';
menu['consciousness_sss_menu'] += '</H1>';
menu['consciousness_sss_menu'] += '<UL>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100715.htm" TITLE="The 12 Paradigms"                                    >15 July 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100701.htm" TITLE="Miracle Mind"                                        >01 July 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100615.htm" TITLE="The New Human Templates - Part 2"                    >15 June 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100601.htm" TITLE="The New Human Templates - Part 1"                    >01 June 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100215.htm" TITLE="A Journey into the Unknown"                          >15 February 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100201.htm" TITLE="Consciousness - Potential - Magic"                   >01 February 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100115.htm" TITLE="Time for Action. More about 2012. Part 2"            >15 January 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20100101.htm" TITLE="Time for Action. More about 2012. Part 1"            >01 January 2010</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20091215.htm" TITLE="Step into the Coming Year"                           >15 December 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20091201.htm" TITLE="Life - The Forest Intertwined"                       >01 December 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20091115.htm" TITLE="Consciousness - Potential - Magic"                   >15 November 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20091101.htm" TITLE="To Handle the Winds of Change"                       >01 November 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20091015.htm" TITLE="THE CREATIVE SURGE"                                  >15 October 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20091001.htm" TITLE="PUSHING IT THROUGH!"                                 >01 October 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090915.htm" TITLE="Let Your Life Speak"                                 >15 September 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090901.htm" TITLE="The Art & Science of Being"                          >01 September 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090815.htm" TITLE="Becoming Ourselves - The Art of Living Effortlessly" >15 August 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090801.htm" TITLE="The Art of Living Effortlessly"                      >01 August 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090715.htm" TITLE="Covenants - the Seeds of the Soul"                   >15 July 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090701.htm" TITLE="The Law of Cause & Effect"                           >01 July 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090615.htm" TITLE="The Law of Action"                                   >15 June 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090601.htm" TITLE="The Law of Relativity"                               >01 June 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090515.htm" TITLE="The Law of Attraction - The Art of Allowing"         >15 May 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090501.htm" TITLE="The Law of Vibrations"                               >01 May 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090415.htm" TITLE="The Law of Correspondence"                           >15 April 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090401.htm" TITLE="The Law of Divine Oneness"                           >01 April 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090315.htm" TITLE="The Healing Process"                                 >15 March 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090301.htm" TITLE="The Integration of Universe & Human Energy"          >01 March 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090215.htm" TITLE="The Essence of Life - Love & Gratitude"              >15 February 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090201.htm" TITLE="The Basic Concepts of Transformation"                >01 February 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090115.htm" TITLE="The Light Shall Set You Free"                        >15 January 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20090101.htm" TITLE="Infinite Truth"                                      >01 January 2009</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20081215.htm" TITLE="The Snowflake and the Butterfly"                     >15 December 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20081201.htm" TITLE="The Healing Process - I Am Worthy of Love & Life"    >01 December 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20081115.htm" TITLE="The Equilibrating Game"                              >15 November 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20081101.htm" TITLE="Our Universal Beliefs & Fears"                       >01 November 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20081015.htm" TITLE="The Seven Areas of Life"                             >15 October 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20081001.htm" TITLE="The Seven Levels of Consciousness"                   >01 October 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080915.htm" TITLE="Perfect Symmetry"                                    >15 September 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080901.htm" TITLE="Both Sides Now - The Break Through Experience"       >01 September 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080815.htm" TITLE="The Secret of Self Mastery"                          >15 August 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080801.htm" TITLE="The Science of Self Discovery"                       >01 August 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080715.htm" TITLE="Quotes to Ponder"                                    >15 July 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080701.htm" TITLE="The Divine Matrix"                                   >01 July 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080606.htm" TITLE="Unconditional Love"                                  >06 June 2008</A></LI>';
menu['consciousness_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="cons20080601.htm" TITLE="The Weaving of The New Earth"                        >01 June 2008</A></LI>';
menu['consciousness_sss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: insight_sss_menu                                                                       //
//-----------------------------------------------------------------------------------------------------//
menu['insight_sss_menu']  = '';
menu['insight_sss_menu'] += '<H1>';
menu['insight_sss_menu'] += 'Insight';
menu['insight_sss_menu'] += '</H1>';
menu['insight_sss_menu'] += '<UL>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight201007.htm"   TITLE="VITAMIN D * THE GOD VITAMIN"                             >July, 2010</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight201006.htm"   TITLE="June Overview"                                           >June, 2010</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight201002.htm"   TITLE="New meaning to the End of Time"                          >February, 2010</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight201001.htm"   TITLE="The Numerological Path of the Great Shift ... Kryon"     >January, 2010</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200912.htm"   TITLE="The Great Shift - Co-Creating a New World!"              >December, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200911.htm"   TITLE="Viewpoints on what is Ascension?"                        >November, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200910p2.htm" TITLE="Summary of Mathew Message - Part 2"                      >October, 2009 P2</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200910p1.htm" TITLE="Summary of Mathew Message - Part 1"                      >October, 2009 P1</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200909.htm"   TITLE="~ The Rewire ~ - Human Rewiring"                         >September, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200908.htm"   TITLE="CHAOTIC NODES"                                           >August, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200907.htm"   TITLE="The Key to Happiness - To Do or to Be"                   >July, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200906.htm"   TITLE="Consciousness - the Road to Self -Transformation"        >June, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200905.htm"   TITLE="The Timing of the Great Shift"                           >May, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200904.htm"   TITLE="Introduction to the Universal Laws"                      >April, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200903.htm"   TITLE="Energy - the Foundation of Universal Laws"               >March, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200902.htm"   TITLE="THE TIME HAS COME FOR DIVINE INTERVENTION"               >February, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200901.htm"   TITLE="The New Shifting Worlds!"                                >January, 2009</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200812b.htm"  TITLE="b. Numerology Profile"                                   >December, 2008 Numerology</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200812a.htm"  TITLE="a. Celestial Profile"                                    >December, 2008 Celestial</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200811sp.htm" TITLE="LET THIS BE THE DAY!"                                    >November Special, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200811.htm"   TITLE="Numerology Profile - November 2008"                      >November, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200810sp.htm" TITLE="Insight into World Economic Downturn & Financial Crisis" >October Special, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200810.htm"   TITLE="OCTOBER OVERVIEW"                                        >October, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200809.htm"   TITLE="SEPTEMBER OVERVIEW"                                      >September, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200808.htm"   TITLE="August Overview"                                         >August, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200807.htm"   TITLE="The Ascending Cosmic Pulse"                              >July, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200806.htm"   TITLE="JUNE OVERVIEW"                                           >June, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200805.htm"   TITLE="MAY OVERVIEW"                                            >May, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200804.htm"   TITLE="FAST FORWARD"                                            >April, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200803.htm"   TITLE="MARCH OVERVIEW"                                          >March, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200802.htm"   TITLE="Alpha Life Trends - 2008 Overview"                       >February, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200801.htm"   TITLE="INTO THE NEW AND TRUE"                                   >January, 2008</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200712.htm"   TITLE="Finding our Hidden Treasures"                            >December, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200711.htm"   TITLE="Major Intersection"                                      >November, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200710.htm"   TITLE="Walking the Razor\'s Edge"                                >October, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200709.htm"   TITLE="Numerology Profile"                                      >September, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200708.htm"   TITLE="DAYS OF NEW BEGINNINGS"                                  >August, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200707.htm"   TITLE="Focus on the inner attributes"                           >July, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200706.htm"   TITLE="A totally new cycle"                                     >June, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200705.htm"   TITLE="Turning of the Tide"                                     >May, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200704.htm"   TITLE="Redefining Everything"                                   >April, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200703.htm"   TITLE="March Insight"                                           >March, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200702.htm"   TITLE="The Wheel of Destiny is turning...."                     >February, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200701.htm"   TITLE="The new direction of our journey into 2007"              >January, 2007</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200612.htm"   TITLE="Burning the Bridges"                                     >December, 2006</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200611.htm"   TITLE="Time To Let Go"                                          >November, 2006</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200610.htm"   TITLE="Building a New Foundation"                               >October, 2006</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200609.htm"   TITLE="Spiritual Gratitude - Shala Mata"                        >September, 2006</A></LI>';
menu['insight_sss_menu'] += '  <LI STYLE="text-align:center;"><A HREF="insight200608.htm"   TITLE="Right Time - Right Place"                                >August, 2006</A></LI>';
menu['insight_sss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: prpgoodman_sss_menu                                                                    //
//-----------------------------------------------------------------------------------------------------//
menu['prpgoodman_sss_menu']  = '';
menu['prpgoodman_sss_menu'] += '<H1>';
menu['prpgoodman_sss_menu'] += 'Pauline Goodman';
menu['prpgoodman_sss_menu'] += '</H1>';
menu['prpgoodman_sss_menu'] += '<UL>';
menu['prpgoodman_sss_menu'] += '  <LI><A HREF="profilePG.htm" TITLE="Visit the Pauline Goodman CAREER PROFILE Page">Career Profile</A></LI>';
menu['prpgoodman_sss_menu'] += '  <LI><A HREF="pghistory.htm" TITLE="Visit the Pauline Goodman HISTORY Page"       >History</A></LI>';
menu['prpgoodman_sss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: numerology_sss_menu                                                                    //
//-----------------------------------------------------------------------------------------------------//
menu['numerology_sss_menu']  = '';
menu['numerology_sss_menu'] += '<H1>';
menu['numerology_sss_menu'] += 'Numerology';
menu['numerology_sss_menu'] += '</H1>';
menu['numerology_sss_menu'] += '<UL>';
menu['numerology_sss_menu'] += '  <LI><A HREF="formNumReading.htm" TITLE="Visit the Numerology Readings Page"        >Readings</A></LI>';
menu['numerology_sss_menu'] += '  <LI><A HREF="worldreview.htm"    TITLE="Visit the Numerology World Review Section" >World Reviews</A></LI>';
menu['numerology_sss_menu'] += '</UL>';




//=====================================================================================================//
//=====================================================================================================//
//  ARRAY: menu           Items: sub-sub-sub-section menus                                             //
//=====================================================================================================//
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: forecast2009_ssss_menu                                                                 //
//-----------------------------------------------------------------------------------------------------//
menu['forecast2009_ssss_menu']  = '';
menu['forecast2009_ssss_menu'] += '<H1>';
menu['forecast2009_ssss_menu'] += 'Yearly Forecast 2009';
menu['forecast2009_ssss_menu'] += '</H1>';
menu['forecast2009_ssss_menu'] += '<UL>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009.htm"        TITLE="View the Forecast for the year 2009"            >Forecast 2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009rat.htm"     TITLE="View the 2009 personal Forecast for the Rat"    >Rat      2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009ox.htm"      TITLE="View the 2009 personal Forecast for the Ox"     >Ox       2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009tiger.htm"   TITLE="View the 2009 personal Forecast for the Tiger"  >Tiger    2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009rabbit.htm"  TITLE="View the 2009 personal Forecast for the Rabbit" >Rabbit   2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009dragon.htm"  TITLE="View the 2009 personal Forecast for the Dragon" >Dragon   2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009snake.htm"   TITLE="View the 2009 personal Forecast for the Snake"  >Snake    2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009horse.htm"   TITLE="View the 2009 personal Forecast for the Horse"  >Horse    2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009sheep.htm"   TITLE="View the 2009 personal Forecast for the Sheep"  >Sheep    2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009monkey.htm"  TITLE="View the 2009 personal Forecast for the Monkey" >Monkey   2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009rooster.htm" TITLE="View the 2009 personal Forecast for the Rooster">Rooster  2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009dog.htm"     TITLE="View the 2009 personal Forecast for the Dog"    >Dog      2009</A></LI>';
menu['forecast2009_ssss_menu'] += '  <LI><A HREF="forecast2009pig.htm"     TITLE="View the 2009 personal Forecast for the Pig"    >Pig      2009</A></LI>';
menu['forecast2009_ssss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: forecast2010_ssss_menu                                                                 //
//-----------------------------------------------------------------------------------------------------//
menu['forecast2010_ssss_menu']  = '';
menu['forecast2010_ssss_menu'] += '<H1>';
menu['forecast2010_ssss_menu'] += 'Yearly Forecast 2010';
menu['forecast2010_ssss_menu'] += '</H1>';
menu['forecast2010_ssss_menu'] += '<UL>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010.htm"        TITLE="View the Forecast for the year 2010"            >Forecast 2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010rat.htm"     TITLE="View the 2010 personal Forecast for the Rat"    >Rat      2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010ox.htm"      TITLE="View the 2010 personal Forecast for the Ox"     >Ox       2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010tiger.htm"   TITLE="View the 2010 personal Forecast for the Tiger"  >Tiger    2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010rabbit.htm"  TITLE="View the 2010 personal Forecast for the Rabbit" >Rabbit   2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010dragon.htm"  TITLE="View the 2010 personal Forecast for the Dragon" >Dragon   2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010snake.htm"   TITLE="View the 2010 personal Forecast for the Snake"  >Snake    2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010horse.htm"   TITLE="View the 2010 personal Forecast for the Horse"  >Horse    2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010sheep.htm"   TITLE="View the 2010 personal Forecast for the Sheep"  >Sheep    2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010monkey.htm"  TITLE="View the 2010 personal Forecast for the Monkey" >Monkey   2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010rooster.htm" TITLE="View the 2010 personal Forecast for the Rooster">Rooster  2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010dog.htm"     TITLE="View the 2010 personal Forecast for the Dog"    >Dog      2010</A></LI>';
menu['forecast2010_ssss_menu'] += '  <LI><A HREF="forecast2010pig.htm"     TITLE="View the 2010 personal Forecast for the Pig"    >Pig      2010</A></LI>';
menu['forecast2010_ssss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: journey2009_ssss_menu                                                                  //
//-----------------------------------------------------------------------------------------------------//
menu['journey2009_ssss_menu']  = '';
menu['journey2009_ssss_menu'] += '<H1>';
menu['journey2009_ssss_menu'] += 'Life Journey 2009';
menu['journey2009_ssss_menu'] += '</H1>';
menu['journey2009_ssss_menu'] += '<UL>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009aries.htm"       TITLE="Life Journey 2009 - Aries"      >Aries       2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009taurus.htm"      TITLE="Life Journey 2009 - Taurus"     >Taurus      2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009gemini.htm"      TITLE="Life Journey 2009 - Gemini"     >Gemini      2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009cancer.htm"      TITLE="Life Journey 2009 - Cancer"     >Cancer      2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009leo.htm"         TITLE="Life Journey 2009 - Leo"        >Leo         2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009virgo.htm"       TITLE="Life Journey 2009 - Virgo"      >Virgo       2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009libra.htm"       TITLE="Life Journey 2009 - Libra"      >Libra       2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009scorpio.htm"     TITLE="Life Journey 2009 - Scorpio"    >Scorpio     2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009sagittarius.htm" TITLE="Life Journey 2009 - Sagittarius">Sagittarius 2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009capricorn.htm"   TITLE="Life Journey 2009 - Capricorn"  >Capricorn   2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009aquarius.htm"    TITLE="Life Journey 2009 - Aquarius"   >Aquarius    2009</A></LI>';
menu['journey2009_ssss_menu'] += '  <LI><A HREF="journey2009pisces.htm"      TITLE="Life Journey 2009 - Pisces"     >Pisces      2009</A></LI>';
menu['journey2009_ssss_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: journey2010_ssss_menu                                                                  //
//-----------------------------------------------------------------------------------------------------//
menu['journey2010_ssss_menu']  = '';
menu['journey2010_ssss_menu'] += '<H1>';
menu['journey2010_ssss_menu'] += 'Life Journey 2010';
menu['journey2010_ssss_menu'] += '</H1>';
menu['journey2010_ssss_menu'] += '<UL>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010.htm"            TITLE="Life Journey for the year 2010" >Life Journey 2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010aries.htm"       TITLE="Life Journey 2010 - Aries"      >Aries        2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010taurus.htm"      TITLE="Life Journey 2010 - Taurus"     >Taurus       2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010gemini.htm"      TITLE="Life Journey 2010 - Gemini"     >Gemini       2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010cancer.htm"      TITLE="Life Journey 2010 - Cancer"     >Cancer       2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010leo.htm"         TITLE="Life Journey 2010 - Leo"        >Leo          2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010virgo.htm"       TITLE="Life Journey 2010 - Virgo"      >Virgo        2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010libra.htm"       TITLE="Life Journey 2010 - Libra"      >Libra        2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010scorpio.htm"     TITLE="Life Journey 2010 - Scorpio"    >Scorpio      2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010sagittarius.htm" TITLE="Life Journey 2010 - Sagittarius">Sagittarius  2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010capricorn.htm"   TITLE="Life Journey 2010 - Capricorn"  >Capricorn    2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010aquarius.htm"    TITLE="Life Journey 2010 - Aquarius"   >Aquarius     2010</A></LI>';
menu['journey2010_ssss_menu'] += '  <LI><A HREF="journey2010pisces.htm"      TITLE="Life Journey 2010 - Pisces"     >Pisces       2010</A></LI>';
menu['journey2010_ssss_menu'] += '</UL>';







//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: contact_us                                                                             //
//-----------------------------------------------------------------------------------------------------//
menu['contact_us']  = '';
menu['contact_us'] += '<H1>Contact us</H1>';
menu['contact_us'] += '<UL>';
menu['contact_us'] += '  <LI><A HREF="contact.htm"            TITLE="Wealthness International Management contact information"        >Contact Information</A></LI>';
menu['contact_us'] += '  <LI><A HREF="formEnquiry.htm"        TITLE="Form for any enquiries you may have"                            >Enquiries</A></LI>';
menu['contact_us'] += '  <LI><A HREF="formFeedback.htm"       TITLE="Form for any feedback you may have"                             >Feedback</A></LI>';
menu['contact_us'] += '  <LI><A HREF="formInvestment.htm"     TITLE="Investment Opportunities Information Request Form"              >Investment Information</A></LI>';
menu['contact_us'] += '  <LI><A HREF="formNewEvent.htm"       TITLE="Apply so that we can arrange events for your programs"          >New Events</A></LI>';
menu['contact_us'] += '  <LI><A HREF="formNewSpa.htm"         TITLE="Apply to have your Resort/Sanctuary/Spa listed on this web site">New Resort/Sanctuary/Spa</A></LI>';
menu['contact_us'] += '  <LI><A HREF="formServicesSurvey.htm" TITLE="Please complete our Online Services Survey page"                >Online Survey</A></LI>';
menu['contact_us'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: corporate_page_menu                                                                    //
//-----------------------------------------------------------------------------------------------------//
menu['corporate_page_menu']  = '';
menu['corporate_page_menu'] += '<H1>Page Menu</H1>';
menu['corporate_page_menu'] += '<UL>';
menu['corporate_page_menu'] += '  <LI><A HREF="corporate.htm"  TITLE="View the Corporate Home Page"                   >Corporate</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="company.htm"    TITLE="View the Company description"                   >Company</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="vision.htm"     TITLE="View our Corporate Vision"                      >Vision</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="concept.htm"    TITLE="View our Business Concept"                      >Concept</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="investment.htm" TITLE="View our Investment Opportunities Pages"        >Investment Opportunities</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="business.htm"   TITLE="View our Global Business Opportunity Pages"     >Global Business Opportunity</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="profile.htm"    TITLE="View our Team"s Profiles"                       >Profiles</A></LI>';
menu['corporate_page_menu'] += '  <LI><A HREF="associates.htm" TITLE="Wealthness International Management Associates" >Associates</A></LI>';
menu['corporate_page_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: form_contact_us                                                                        //
//-----------------------------------------------------------------------------------------------------//
menu['form_contact_us']  = '';
menu['form_contact_us'] += '<H1>Contact us</H1>';
menu['form_contact_us'] += '<UL>';
menu['form_contact_us'] += '  <LI><A HREF="../contact.htm"            TITLE="Wealthness International Management contact information">Contact Information</A></LI>';
menu['form_contact_us'] += '  <LI><A HREF="../formEnquiry.htm"        TITLE="Form for any enquiries you may have"                    >Enquiries</A></LI>';
menu['form_contact_us'] += '  <LI><A HREF="../formFeedback.htm"       TITLE="Form for any feedback you may have"                     >Feedback</A></LI>';
menu['form_contact_us'] += '  <LI><A HREF="../formInvestment.htm"     TITLE="Investment Opportunities Information Request Form"      >Investment Information</A></LI>';
menu['form_contact_us'] += '  <LI><A HREF="../formNewEvent.htm"       TITLE="Apply so that we can arrange events for your programs"  >New Events</A></LI>';
menu['form_contact_us'] += '  <LI><A HREF="../formNewSpa.htm"         TITLE="Apply to have your Resort/Sanctuary/Spa listed on this web site">New Resort/Sanctuary/Spa</A></LI>';
menu['form_contact_us'] += '  <LI><A HREF="../formServicesSurvey.htm" TITLE="Please complete our Online Services Survey page"        >Online Survey</A></LI>';
menu['form_contact_us'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: form_information_menu                                                                  //
//-----------------------------------------------------------------------------------------------------//
menu['form_information_menu']  = '';
menu['form_information_menu'] += '<H1>Information</H1>';
menu['form_information_menu'] += '<UL>';
menu['form_information_menu'] += '  <LI><A HREF="../breakingnews.htm"  TITLE="Visit the Insight Section"          >Breaking News</A></LI>';
menu['form_information_menu'] += '  <LI><A HREF="../insight.htm"       TITLE="Visit the Insight Section"          >Insight</A></LI>';
menu['form_information_menu'] += '  <LI><A HREF="../consciousness.htm" TITLE="Visit the New Consciousness Section">New Consciousness</A></LI>';
menu['form_information_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: free_online_services                                                                   //
//-----------------------------------------------------------------------------------------------------//
menu['form_online_services']  = '';
menu['form_online_services'] += '<H1>FREE Online Services</H1>';
menu['form_online_services'] += '<UL>';
menu['form_online_services'] += '  <LI><A HREF="../journey.htm"        TITLE="Visit the Life Journey Section"   >Life Journey Readings</A></LI>';
menu['form_online_services'] += '  <LI><A HREF="../formNumReading.htm" TITLE="Open the Numerology Reading Form" >Numerology Reading</A>';
menu['form_online_services'] += '  <LI><A HREF="../coaching.htm"       TITLE="Visit our Online Coaching page"   >Online Coaching</A></LI>';
menu['form_online_services'] += '  <LI><A HREF="../forecast.htm"       TITLE="Visit our Yearly Forecast section">Yearly Forecast</A></LI>';
menu['form_online_services'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: form_page_menu                                                                         //
//-----------------------------------------------------------------------------------------------------//
menu['form_page_menu']  = '';
menu['form_page_menu'] += '<H1>Page Menu</H1>';
menu['form_page_menu'] += '<UL>';
menu['form_page_menu'] += '  <LI><A HREF="../sanctuaries.htm" TITLE="Visit our Health & Healing Resorts & Sanctuaries"                      >Resorts & Sanctuaries</A></LI>';
menu['form_page_menu'] += '  <LI><A HREF="../programs.htm"    TITLE="View our Health & Well Being Program section"                          >Programs</A></LI>';
menu['form_page_menu'] += '  <LI><A HREF="../services.htm"    TITLE="View our Free Online Services page"                                    >Services</A></LI>';
menu['form_page_menu'] += '  <LI><A HREF="../corporate.htm"   TITLE="View the Wealthness International Management Corporate pages"          >Corporate</A></LI>';
menu['form_page_menu'] += '  <LI><A HREF="../spOffer.htm"     TITLE="Wealthness International Management Special Offers - Not to be missed!">Special Offers</A></LI>';
menu['form_page_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: free_online_services                                                                   //
//-----------------------------------------------------------------------------------------------------//
menu['free_online_services']  = '';
menu['free_online_services'] += '<H1>FREE Online Services</H1>';
menu['free_online_services'] += '<UL>';
menu['free_online_services'] += '  <LI><A HREF="journey.htm"        TITLE="Visit the Astrology Life Journey Section" >Life Journey Readings</A></LI>';
menu['free_online_services'] += '  <LI><A HREF="forecast.htm"       TITLE="Visit our Yearly Forecast section"        >Yearly Forecast</A></LI>';
menu['free_online_services'] += '  <LI><A HREF="worldreview.htm"    TITLE="Visit the Numerology World Review Section">World Reviews</A></LI>';
menu['free_online_services'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: home_page_menu                                                                         //
//-----------------------------------------------------------------------------------------------------//
menu['home_page_menu']  = '';
menu['home_page_menu'] += '<H1>Page Menu</H1>';
menu['home_page_menu'] += '<UL>';
menu['home_page_menu'] += '  <LI><A HREF="sanctuaries.htm"  TITLE="Visit our Health & Healing Resorts & Sanctuaries"                      >Resorts & Sanctuaries</A></LI>';
menu['home_page_menu'] += '  <LI><A HREF="programs.htm"     TITLE="View our Health & Well Being Program Section"                          >Programs</A></LI>';
menu['home_page_menu'] += '  <LI><A HREF="affiliations.htm" TITLE="View our Affiliations section"                                         >Affiliations</A></LI>';
menu['home_page_menu'] += '  <LI><A HREF="services.htm"     TITLE="View our Free Online Services page"                                    >Services</A></LI>';
menu['home_page_menu'] += '  <LI><A HREF="corporate.htm"    TITLE="View the Wealthness International Management Corporate pages"          >Corporate</A></LI>';
menu['home_page_menu'] += '  <LI><A HREF="spOffer.htm"      TITLE="Wealthness International Management Special Offers - Not to be missed!">Special Offers</A></LI>';
menu['home_page_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: investment_sections                                                                    //
//-----------------------------------------------------------------------------------------------------//
menu['investment_sections']  = '';
menu['investment_sections'] += '<H1>Investment</H1>';
menu['investment_sections'] += '<UL>';
menu['investment_sections'] += '  <LI><A HREF="investment.htm"     TITLE="Investment Opportunities Main Page"             >Investment Opportunities</A></LI>';
menu['investment_sections'] += '  <LI><A HREF="invbackground.htm"  TITLE="Investment Opportunities Background Information">Background Information</A></LI>';
menu['investment_sections'] += '  <LI><A HREF="formInvestment.htm" TITLE="Investment Opportunities Information Request"   >Information Application</A></LI>';
menu['investment_sections'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: numerology_sections                                                                    //
//-----------------------------------------------------------------------------------------------------//
menu['numerology_sections']  = '';
menu['numerology_sections'] += '<H1>Numerology</H1>';
menu['numerology_sections'] += '<UL>';
menu['numerology_sections'] += '  <LI>History</LI>';
menu['numerology_sections'] += '  <LI>Types of Numerology</LI>';
menu['numerology_sections'] += '  <LI>Meanings of Numbers</LI>';
menu['numerology_sections'] += '  <LI>Calculations</LI>';
menu['numerology_sections'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: programs_related                                                                       //
//-----------------------------------------------------------------------------------------------------//
menu['programs_related']  = '';
menu['programs_related'] += '<H1>Related Sections</H1>';
menu['programs_related'] += '<UL>';
menu['programs_related'] += '  <LI><A HREF="spOffer.htm"     TITLE="View our Current Special Offers"                 >Current Special Offers</A></LI>';
menu['programs_related'] += '  <LI><A HREF="sanctuaries.htm" TITLE="Visit our Health & Healing Resorts & Sanctuaries">Resorts & Sanctuaries</A></LI>';
menu['programs_related'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: sanctuary_related                                                                      //
//-----------------------------------------------------------------------------------------------------//
menu['sanctuary_related']  = '';
menu['sanctuary_related'] += '<H1>Related Sections</H1>';
menu['sanctuary_related'] += '<UL>';
menu['sanctuary_related'] += '  <LI><A HREF="spOffer.htm"  TITLE="View our Current Special Offers" >Current Special Offers</A></LI>';
menu['sanctuary_related'] += '  <LI><A HREF="programs.htm" TITLE="View our Programs Section"       >Programs</A></LI>';
menu['sanctuary_related'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: sanctuary_sections                                                                     //
//-----------------------------------------------------------------------------------------------------//
menu['sanctuary_sections']  = '';
menu['sanctuary_sections'] += '<H1>Sanctuaries</H1>';
menu['sanctuary_sections'] += '<UL>';
menu['sanctuary_sections'] += '  <LI><A HREF="sebel.htm" TITLE="View our Sebel Reef House & Spa pages" >The Sebel Reef House & Spa</A></LI>';
menu['sanctuary_sections'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: sebel_pages                                                                            //
//-----------------------------------------------------------------------------------------------------//
menu['sebel_pages']  = '';
menu['sebel_pages'] += '<H1>The Sebel Reef House</H1>';
menu['sebel_pages'] += '<UL>';
menu['sebel_pages'] += '  <LI><A HREF="sebel.htm"            TITLE="View our Sebel Reef House & Spa Overview"            >Overview</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelAccomm.htm"      TITLE="The Sebel Reef House & Spa Accommodation"            >Accommodation</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelServices.htm"    TITLE="The Sebel Reef House & Spa Services & Facilities"    >Services & Facilities</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelRestaurants.htm" TITLE="The Sebel Reef House & Spa Restaurants & Bars"       >Restaurants & Bars</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelAttractions.htm" TITLE="The Sebel Reef House & Spa Attractions & Activities" >Attractions & Activities</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelPrograms.htm"    TITLE="The Sebel Reef House & Spa Programs"                 >Programs</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelSchedules.htm"   TITLE="The Sebel Reef House & Spa Schedules & Prices"       >Schedules & Prices</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="sebelLocation.htm"    TITLE="The Sebel Reef House & Spa Location & Getting There" >Location</A></LI>';
menu['sebel_pages'] += '  <LI><A HREF="formBooking.htm?For=Sebel Reef House&Case=Sebel Reef House" TITLE="The Sebel Reef House & Spa Book Now">Book Now</A></LI>';
menu['sebel_pages'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: spoffers_page_menu                                                                     //
//-----------------------------------------------------------------------------------------------------//
menu['spoffers_page_menu']  = '';
menu['spoffers_page_menu'] += '<H1>Page Menu</H1>';
menu['spoffers_page_menu'] += '<UL>';
menu['spoffers_page_menu'] += '  <LI><A HREF="spOffer.htm"         TITLE="View our Current Special Offers" >Current Special Offers</A></LI>';
menu['spoffers_page_menu'] += '  <LI><A HREF="spOfferPrevious.htm" TITLE="View our Previous Special Offers">Previous Special Offers</A></LI>';
menu['spoffers_page_menu'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: spoffers_related                                                                       //
//-----------------------------------------------------------------------------------------------------//
menu['spoffers_related']  = '';
menu['spoffers_related'] += '<H1>Related Sections</H1>';
menu['spoffers_related'] += '<UL>';
menu['spoffers_related'] += '  <LI><A HREF="sanctuaries.htm" TITLE="Visit our Health & Healing Resorts & Sanctuaries">Resorts & Sanctuaries</A></LI>';
menu['spoffers_related'] += '  <LI><A HREF="sebel.htm"       TITLE="Visit our Sebel Reef House & Spa pages"          >The Sebel Reef House & Spa</A></LI>';
menu['spoffers_related'] += '  <LI><A HREF="programs.htm"    TITLE="View our Programs Section"                       >Programs Section</A></LI>';
menu['spoffers_related'] += '  <LI><A HREF="progDetails.htm" TITLE="View our Health & Well Being Programs"           >Health & Well Being Programs</A></LI>';
menu['spoffers_related'] += '  <LI><A HREF="progSummary.htm" TITLE="View our Health & Well Being Program Summaries"  >Program Summaries</A></LI>';
menu['spoffers_related'] += '</UL>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY:    menu                                                                                END  //
//=====================================================================================================//

//=====================================================================================================//
//  ARRAY: reference (NOTE all item names must be lowercase. fn 1st converts name to lowercase.) BEGIN //
//-----------------------------------------------------------------------------------------------------//
var reference = new Array;     
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: astrologyof2012_info                                                                   //
//-----------------------------------------------------------------------------------------------------//
reference['astrologyof2012_info']  = '';
reference['astrologyof2012_info'] += '<B>';
reference['astrologyof2012_info'] += ' -- <A HREF="http://www.spiritofmaat.com/maatshop/astrologyof2012_info.htm" TARGET="_new" TITLE="The Astrology of 2012 and Beyond.">The Astrology of 2012 and Beyond</A> -- ';
reference['astrologyof2012_info'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: lightworker01                                                                          //
//-----------------------------------------------------------------------------------------------------//
reference['lightworker01']  = '';
reference['lightworker01'] += '<B>';
reference['lightworker01'] += '  <A HREF="http://www.lightworker.com" TARGET="_new" TITLE="The Lightworker website.">www.lightworker.com</A>';
reference['lightworker01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: manhattangroup01                                                                       //
//-----------------------------------------------------------------------------------------------------//
reference['manhattangroup01']  = '';
reference['manhattangroup01'] += '<B>';
reference['manhattangroup01'] += '  <A HREF="http://www.manhattangroup.com.au" TARGET="_new" TITLE="The Manhattan Group website.">www.manhattangroup.com.au</A>';
reference['manhattangroup01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: obamasensation01                                                                       //
//-----------------------------------------------------------------------------------------------------//
reference['obamasensation01']  = '';
reference['obamasensation01'] += '<B>';
reference['obamasensation01'] += '  <A HREF="http://www.newvisionaries.net/NewVisionaries/ObamaSensation.htm" TARGET="_new">ObamaSensation</A>';
reference['obamasensation01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: ronnastar01                                                                            //
//-----------------------------------------------------------------------------------------------------//
reference['ronnastar01']  = '';
reference['ronnastar01'] += '<B>';
reference['ronnastar01'] += '  <I>Transmitted Through Ronna Herman <A HREF="http://www.ronnastar.com" TARGET="_new" TITLE="External link: http://www.ronnastar.com">http://www.ronnastar.com</A>.</I>';
reference['ronnastar01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: solara01                                                                              //
//-----------------------------------------------------------------------------------------------------//
reference['solara01']  = '';
reference['solara01'] += '<H3>';
reference['solara01'] += '  <A HREF="http://www.theinvisible.com" TARGET="_new" TITLE="External link: www.theinvisible.com.">Solara</A>';
reference['solara01'] += '</H3>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: solaria01                                                                              //
//-----------------------------------------------------------------------------------------------------//
reference['solaria01']  = '';
reference['solaria01'] += '<BR>';
reference['solaria01'] += '<H3>';
reference['solaria01'] += '  <A HREF="http://www.nvisible.com/Surf/SurfSignIn08.html" TARGET="_new" TITLE="Full Surf Report (Subscription Required).">Full Surf Report by subscription.</A>';
reference['solaria01'] += '</H3>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: starwavz01                                                                             //
//-----------------------------------------------------------------------------------------------------//
reference['starwavz01']  = '';
reference['starwavz01'] += '<B>';
reference['starwavz01'] += '  <I>*Website: <A HREF="http://www.starwavz.com" TARGET="_new" TITLE="External link: www.starwavz.com.">www.starwavz.com</A>.</I>';
reference['starwavz01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: tomkenyon01                                                                            //
//-----------------------------------------------------------------------------------------------------//
reference['tomkenyon01']  = '';
reference['tomkenyon01'] += '<B>';
reference['tomkenyon01'] += '  <A HREF="http://www.tomkenyon.com" TARGET="_new" TITLE="External link: www.tomkenyon.com.">www.tomkenyon.com</A>';
reference['tomkenyon01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: vitamind01                                                                             //
//-----------------------------------------------------------------------------------------------------//
reference['vitamind01']  = '';
reference['vitamind01'] += '<B>';
reference['vitamind01'] += '  <A HREF="http://www.womentowomen.com/healthynutrition/vitaminD" TARGET="_new" TITLE="Healthy Nutrition.">www.womentowomen.com/healthynutrition/vitaminD</A>';
reference['vitamind01'] += '</B>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY: reference                                                                              END  //
//=====================================================================================================//

//=====================================================================================================//
//  ARRAY: summary (NOTE all item names must be lowercase. fn 1st converts name to lowercase.)   BEGIN //
//-----------------------------------------------------------------------------------------------------//
var summary = new Array;
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: astrology01                                                                            //
//-----------------------------------------------------------------------------------------------------//
summary['astrology01']  = '';
summary['astrology01'] += '<H1>Astrology</H1>';
summary['astrology01'] += 'Astrology is an ancient science of the Cosmo planetary movements of Sun, Moon, Earth & Stellar Sphere ... ';
summary['astrology01'] += 'that has influences on your birthdates ';
summary['astrology01'] += '– the definitive guides of self discovering to reveal your inner self, your physical journey, ';
summary['astrology01'] += 'soul lessons, strength, weakness, contrast - in your relationships, career, health etc in order to uncover and remember ';
summary['astrology01'] += 'who-you-really-are, your well-being and what is your purpose of life...';
summary['astrology01'] += '<P CLASS="Goto">';
summary['astrology01'] += '<A HREF="http://www.WIHResorts.com/astrology.htm" TITLE="Go to the Astrology section.">Go to the Astrology section.</A>';
summary['astrology01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: bookclub01                                                                             //
//-----------------------------------------------------------------------------------------------------//
summary['bookclub01']  = '';
summary['bookclub01'] += '<H1>Book Club</H1>';
summary['bookclub01'] += '<H3 STYLE="color:red;">Recommendation of Inspirational Books</H3>';
summary['bookclub01'] += 'Knowledge is Power – a gateway to Wisdom - the Key to bridge your spiritual and ordinary worlds ... ';
summary['bookclub01'] += 'in attainment of perfect balanced perception of life. It is what you experienced and felt immense gratitude; ';
summary['bookclub01'] += 'when you see the perfect equilibrium in Divine Order & Universe Laws of every area of your life ... And Accept as It is. ';
summary['bookclub01'] += '<P CLASS="Goto">';
summary['bookclub01'] += '<A HREF="http://www.WIHResorts.com/bookclub.htm" TITLE="Go to the Book Club section.">Go to the Book Club section.</A>';
summary['bookclub01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: breakingnews01                                                                         //
//-----------------------------------------------------------------------------------------------------//
summary['breakingnews01']  = '';
summary['breakingnews01'] += '<H1>Breaking News</H1>';
summary['breakingnews01'] += 'In this New Era of "Change", the energy has shifted, events & things altered ... You can feel it. ';
summary['breakingnews01'] += 'The shift is not in your imagination or merely on a national or global level. There is a shift in you as well. ';
summary['breakingnews01'] += '<P CLASS="Goto">';
summary['breakingnews01'] += '<A HREF="http://www.WIHResorts.com/breakingnews.htm" TITLE="Go to the Special Offers section.">Go to Breaking News.</A>';
summary['breakingnews01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: breakingnews_latest01 - 17 March 2009                                                  //
//-----------------------------------------------------------------------------------------------------//
summary['breakingnews_latest01']  = '';
summary['breakingnews_latest01'] += '<H1>Breaking News</H1>';
summary['breakingnews_latest01'] += '<H2 STYLE="color:red;">March 2009</H2>';
summary['breakingnews_latest01'] += '<H3>Technology Download on July 21 and 22.</H3>';
summary['breakingnews_latest01'] += '<H3 STYLE="color:red;">Channeled Message from the Group</H3>';
summary['breakingnews_latest01'] += 'We have spoken many times about the balance between technology and spiritual evolution. ...';
summary['breakingnews_latest01'] += '<P CLASS="Goto">';
summary['breakingnews_latest01'] += '<A HREF="http://www.WIHResorts.com/brnews20090317.htm" TITLE="Go to the Special Offers section.">Go to latest Breaking News.</A>';
summary['breakingnews_latest01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: breakingnews_latest02 - 01 February 2009                                               //
//-----------------------------------------------------------------------------------------------------//
summary['breakingnews_latest02']  = '';
summary['breakingnews_latest02'] += '<H1>Breaking News</H1>';
summary['breakingnews_latest02'] += '<H2 STYLE="color:red;">Historic Moment</H2>';
summary['breakingnews_latest02'] += '<H2>Inauguration Day of Barack Obama</H2>';
summary['breakingnews_latest02'] += '<H3>The 44th President of the United States of America</H3>';
summary['breakingnews_latest02'] += '<H3 STYLE="color:red;">';
summary['breakingnews_latest02'] += 'This is a magical historic moment in USA  ';
summary['breakingnews_latest02'] += '<BR>';
summary['breakingnews_latest02'] += 'It also has an inspirational impact in the world!';
summary['breakingnews_latest02'] += '</H3>';
summary['breakingnews_latest02'] += 'The message of Barack Obama campaign is "Change & Hope"!  ';
summary['breakingnews_latest02'] += '<BR><BR>';
summary['breakingnews_latest02'] += 'Now let"s look at the numerology of his inauguration date ...';
summary['breakingnews_latest02'] += '<P CLASS="Goto">';
summary['breakingnews_latest02'] += '<A HREF="http://www.WIHResorts.com/brnews20090121.htm" TITLE="Go to the Special Offers section.">Go to latest Breaking News.</A>';
summary['breakingnews_latest02'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: corporate01                                                                            //
//-----------------------------------------------------------------------------------------------------//
summary['corporate01']  = '';
summary['corporate01'] += '<H2>Corporate</H2>';
summary['corporate01'] += '<H3 STYLE="color:red;">';
summary['corporate01'] += '"Life is not about tomorrow';
summary['corporate01'] += '<BR>';
summary['corporate01'] += 'Life is about how you currently manage your Energy';
summary['corporate01'] += '<BR>';
summary['corporate01'] += 'in Rampage of Appreciation!"';
summary['corporate01'] += '</H3>';
summary['corporate01'] += 'Life is full of Surprises, Possibilities & Potentials ... ';
summary['corporate01'] += 'You just have to deliberately direct your focus to your passions in alignment with your Inner Being of your ';
summary['corporate01'] += 'purpose & missions in your journey ... to actualized your dreams!';
summary['corporate01'] += '<BR><BR>';
summary['corporate01'] += '<H3 STYLE="text-align:center;">';
summary['corporate01'] += 'There are many ways to strengthen your attunement to the world as well as to your life path or destiny.';
summary['corporate01'] += '</H3>';
summary['corporate01'] += '<BR>';
summary['corporate01'] += 'Wealthness Int"l Management"s vision, purpose & strength, is to ...';
summary['corporate01'] += '<P CLASS="Goto">';
summary['corporate01'] += '<A HREF="http://www.WIHResorts.com/corporate.htm" TITLE="Go to the Corporate section.">Go to Corporate.</A>';
summary['corporate01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: corporateretreat01                                                                     //
//-----------------------------------------------------------------------------------------------------//
summary['corporateretreat01']  = '';
summary['corporateretreat01'] += '<H2>Corporate Retreats</H2>';
summary['corporateretreat01'] += '<UL STYLE="margin-left:20px;margin-top:15px;">';
summary['corporateretreat01'] += '  <LI>';
summary['corporateretreat01'] += '<H3 STYLE="color:red;margin-top:15px;text-align:left;">Corporate Retreats</H3>';
summary['corporateretreat01'] += '    <UL STYLE="margin-left:20px;">';
summary['corporateretreat01'] += '      <LI>Weekends or 7 days Resort Programs</LI>';
summary['corporateretreat01'] += '      <LI>Building Team Spirit</LI>';
summary['corporateretreat01'] += '      <LI>Achieve Integrity</LI>';
summary['corporateretreat01'] += '      <LI>Operate from Physical & Psychological Excellence</LI>';
summary['corporateretreat01'] += '    </UL>';
summary['corporateretreat01'] += '  </LI>';
summary['corporateretreat01'] += '  <LI>';
summary['corporateretreat01'] += '<H3 STYLE="color:blue;margin-top:15px;text-align:left;">Calisthenics & Activities</H3>';
summary['corporateretreat01'] += '    <UL STYLE="margin-left:20px;">';
summary['corporateretreat01'] += '      <LI>Meditation, Yoga, Tai Chi, Pilates, Qi Kong</LI>';
summary['corporateretreat01'] += '      <LI>Others - depending on locationsg</LI>';
summary['corporateretreat01'] += '    </UL>';
summary['corporateretreat01'] += '  </LI>';
summary['corporateretreat01'] += '</UL>';
summary['corporateretreat01'] += '<P CLASS="Goto">';
summary['corporateretreat01'] += '<A HREF="http://www.WIHResorts.com/progDetails.htm" TITLE="Go to the Program Details section.">Go to Program Details.</A>';
summary['corporateretreat01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: freecoaching01                                                                         //
//-----------------------------------------------------------------------------------------------------//
summary['freecoaching01']  = '';
summary['freecoaching01'] += '<H1>Free Online Coaching</H1>';
summary['freecoaching01'] += '<H3>The Art of Living Now – The Leading Edge Thoughts</H3>';
summary['freecoaching01'] += '<H3 STYLE="color:red;">';
summary['freecoaching01'] += '"Life is supposed to be good for you';
summary['freecoaching01'] += '<BR>';
summary['freecoaching01'] += 'You didn\'t come forth for the struggle."';
summary['freecoaching01'] += '<BR>';
summary['freecoaching01'] += 'Abraham';
summary['freecoaching01'] += '</H3>';
summary['freecoaching01'] += 'In 2009 - A total shift of energy in our world filled us with excitement and joy. ';
summary['freecoaching01'] += 'We need to learn how to adjust ourselves in these new energies in our personal life matrix – ';
summary['freecoaching01'] += 'health, career, finance, business, relationships, spirituality, purpose and empowerment etc';
summary['freecoaching01'] += '<P CLASS="Goto">';
summary['freecoaching01'] += '<A HREF="http://www.WIHResorts.com/coaching.htm" TITLE="Go to Free Online Coaching.">Go to Free Online Coaching.</A>';
summary['freecoaching01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: newconsciousness01                                                                     //
//-----------------------------------------------------------------------------------------------------//
summary['newconsciousness01']  = '';
summary['newconsciousness01'] += '<H2>New Consciousness</H2>';
summary['newconsciousness01'] += 'Life is amazing! Every 13,000 years on Earth a sacred and secret event takes place that changes everything .... ';
summary['newconsciousness01'] += 'even the very course of history. At this moment this event is occurring but only a few people know, hidden until now......  ';
summary['newconsciousness01'] += '<P CLASS="Goto">';
summary['newconsciousness01'] += '<A HREF="http://www.WIHResorts.com/consciousness.htm" TITLE="Go to the New Consciousness section.">Go to New Consciousness.</A>';
summary['newconsciousness01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: numerology01                                                                           //
//-----------------------------------------------------------------------------------------------------//
summary['numerology01']  = '';
summary['numerology01'] += '<H1>Numerology</H1>';
summary['numerology01'] += '<H3 STYLE="color:red;">Numerology & Your Well-Being</H3>';
summary['numerology01'] += '<BR>';
summary['numerology01'] += 'Numerology is in old traditions of many cultures beliefs. People believe its powerful affects on the date of birth, ';
summary['numerology01'] += 'business, wedding and other auspicious aspects of their lives.';
summary['numerology01'] += '<P CLASS="Goto">';
summary['numerology01'] += '<A HREF="http://www.WIHResorts.com/numerology.htm" TITLE="Go to the Numerology section.">Go to the Numerology section.</A>';
summary['numerology01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: numerology02                                                                           //
//-----------------------------------------------------------------------------------------------------//
summary['numerology02']  = '';
summary['numerology02'] += '<H1>Numerology</H1>';
summary['numerology02'] += '<H3 STYLE="color:red;">Numbers have special symbolic meanings.</H3>';
summary['numerology02'] += '<UL STYLE="margin-left:15px;margin-top:5px;">';
summary['numerology02'] += '  <LI>The basic number of 1 to 9 can reveal things about you such as your past, present and future.</LI>';
summary['numerology02'] += '  <LI>Numbers like your date of birth, house, telephone, car and commercial or business numbers ... As well as serial numbers of identity or bank ... all numbers define who you are in current situations or your forward vision/future.</LI>';
summary['numerology02'] += '  <LI>The Master numbers- 11, 22 and so on ... relate to our purpose in our life journey and universal year perditions of the future visions.</LI>';
summary['numerology02'] += '</UL>';
summary['numerology02'] += '<P CLASS="Goto">';
summary['numerology02'] += '<A HREF="http://www.WIHResorts.com/numerology.htm" TITLE="Go to the Numerology section.">Go to the Numerology section.</A>';
summary['numerology02'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: programs01                                                                             //
//-----------------------------------------------------------------------------------------------------//
summary['programs01']  = '';
summary['programs01'] += '<H2>Programs</H2>';
summary['programs01'] += '<H3 STYLE="color:red;">';
summary['programs01'] += '"The Leading Edge Thoughts Benefit the Expansion of your';
summary['programs01'] += '<BR>';
summary['programs01'] += 'Desires to Consciously Living your Dreams in Joy!"';
summary['programs01'] += '</H3>';
summary['programs01'] += 'Life extracts from Clarity & Conscious Awareness to bring us everything new, when we imagine or focus ';
summary['programs01'] += 'on what we want or dream to manifest in our life experiences instead of just observing what is in the world. ';
summary['programs01'] += 'It always has been and always will be!';
summary['programs01'] += '<BR><BR>';
summary['programs01'] += '<H3">';
summary['programs01'] += 'Welcome to explore our Leading Edge Health & Wellbeing ';
summary['programs01'] += '<BR><BR>';
summary['programs01'] += 'Resort Retreats & Services';
summary['programs01'] += '</H3>';
summary['programs01'] += '<P CLASS="Goto">';
summary['programs01'] += '<A HREF="http://www.WIHResorts.com/programs.htm" TITLE="View our Health & Well Being Program section">Go to Programs.</A>';
summary['programs01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: resorts01                                                                              //
//-----------------------------------------------------------------------------------------------------//
summary['resorts01']  = '';
summary['resorts01'] += '<H2>Resorts & Sanctuaries</H2>';
summary['resorts01'] += '<H2 STYLE="color:red;">"Heaven on Earth" is Now Here!</H2>';
summary['resorts01'] += 'Imagine a wondrous environment of beauty and nature to relax, recharge & realignment our energy, ';
summary['resorts01'] += 'in vibrations at every level of your Being; to deliberate focus on what you want in your life experiences ... ';
summary['resorts01'] += 'who you want to become ... and move in the direction of it with ease & grace.';
summary['resorts01'] += '<BR><BR>';
summary['resorts01'] += 'A healthy, mind, body, heart & spirit connection and alignment with your whole Being – the Inner Intelligence is ';
summary['resorts01'] += 'what you are here to seek and all will become true for you in wealth & wellbeing of your physical life experience ... ';
summary['resorts01'] += 'to create a better future life & world.';
summary['resorts01'] += '<P CLASS="Goto">';
summary['resorts01'] += '<A HREF="http://www.WIHResorts.com/sanctuaries.htm" TITLE="Go to the Special Offers section.">Go to Resorts & Sanctuaries.</A>';
summary['resorts01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: sebel01                                                                                //
//-----------------------------------------------------------------------------------------------------//
summary['sebel01']  = '';
summary['sebel01'] += '<H2>The Sebel Reef House & Spa</H2>';
summary['sebel01'] += '<H2 STYLE="color:red;">Overview</H2>';
summary['sebel01'] += 'Distinctly different to other hotels, The Sebel Reef House & Spa is a resort with an easy-going atmosphere positioned ';
summary['sebel01'] += 'in the heart of Palm Cove with a stunning beachfront location.';
summary['sebel01'] += '<BR><BR>';
summary['sebel01'] += 'Nestled among tranquil tropical gardens and vibrant flora, The Sebel Reef House & Spa was designed to capture the romance ';
summary['sebel01'] += 'of the tropics and the colonial splendour of a bygone era. Majestic rainforest clad mountains make a stunning backdrop to ';
summary['sebel01'] += 'the three pools, two spas and cascading waterfall.';
summary['sebel01'] += '<P CLASS="Goto">';
summary['sebel01'] += '<A HREF="http://www.WIHResorts.com/sebel.htm" TITLE="Go to the Sebel Reef House & Spa section.">Go to Sebel Reef House & Spa.</A>';
summary['sebel01'] += '</P>';
//-----------------------------------------------------------------------------------------------------//
//  ARRAY ITEM: specialoffers01                                                                        //
//-----------------------------------------------------------------------------------------------------//
summary['specialoffers01']  = '';
summary['specialoffers01'] += '<H2>Special Offers</H2>';
summary['specialoffers01'] += '<H3 STYLE="color:black;">';
summary['specialoffers01'] += 'Do you want to make and implement';
summary['specialoffers01'] += '<BR>';
summary['specialoffers01'] += 'positive changes in 2009?';
summary['specialoffers01'] += '</H3>';
summary['specialoffers01'] += '<H1>Stop Delaying!</H1>';
summary['specialoffers01'] += '<H3 STYLE="color:black;">Make it happen Now</H3>';
summary['specialoffers01'] += '<H3 STYLE="color:red;">';
summary['specialoffers01'] += '"Preventive Wellness is far easier';
summary['specialoffers01'] += '<BR>';
summary['specialoffers01'] += 'to accomplish than Corrective Wellness"';
summary['specialoffers01'] += '</H3>';
summary['specialoffers01'] += 'In order to be at your maximum state of health & wellbeing, Explore the Leading Edge Health & Wellbeing ';
summary['specialoffers01'] += 'Resort Retreats March - May 2009 at The Sebel Reef House & Spa, Queensland Enjoy your holidays in the ';
summary['specialoffers01'] += 'serenity & beauty of Australia ...';
summary['specialoffers01'] += '<P CLASS="Goto">';
summary['specialoffers01'] += '<A HREF="http://www.WIHResorts.com/spOffer.htm" TITLE="Go to the Special Offers section.">Go to Special Offers.</A>';
summary['specialoffers01'] += '</P>';


//-----------------------------------------------------------------------------------------------------//
//  ARRAY:    summary                                                                             END  //
//=====================================================================================================//
