/*
MAINTAINING THE HISTORICAL SITES MAP
--------------------------------------------------------
Removing a site:  Simply delete the single line of code corresponding to the site you wish to delete.

Moving a site:    Use the first two elements in the site array to control the location of the site on the map
 >> For example   h_sites.push([distance in pixels from left side, distance in pixels from top, site description ]);

Adding a site:    Copy a line of code, site, that is closest to the new site.  Use the example above to pinpoint
		  the location of the site and modify the site description to match the new site name.

NOTES ABOUT USING FRONT PAGE
--------------------------------------------------------
Just a note about moving or adding a site.  Front Page does not exactly place the site where it should be.  You will
need to preview the page to see the true location of the site.  This may seem absurd, and I agree, but this is just
how it is because of how Front Page renders this type of set up and any dynamic positioning on the screen.  So this
will probably require you to make an adjustment and they have to repreview the page to see the adjustment.
*/



var h_sites = new Array();			// DO NOT TOUCH THIS LINE

//California
h_sites.push([30,525,"Oakland Temple Pagent","/travel/oakland_temple_pageant/oakland_temple_pageant.htm"]);
h_sites.push([70,615,"Mormon Battalion Visitor Center","/travel/mormon_battalion/san_diego_mormon_batallion_visit.htm"]);

//Utah
h_sites.push([160,485,"The Clarkston Pageant","/travel/carkston_martin_harris_pageant/clarkston_pageant_martin_harris.htm"]);
h_sites.push([158,502,"Salt Lake City","/travel/salt_lake_city/salt_lake_city.htm"]);
h_sites.push([165,522,"Castle Valley Pageant","/travel/castle_valley_pageant/castle_valley_pageant.htm"]);
h_sites.push([145,522,"Mormon Miracle Pageant","/travel/mormon_miracle_pageant/mormon_miracle_pageant.htm"]);
h_sites.push([140,540,"Cove Fort","/travel/cove_fort/cove_fort.htm"]);
h_sites.push([131,554,"St. George Sites","/travel/st_george/st_georgesites.htm"]);

//Arizona
h_sites.push([140,637,"Arizona Easter Pageant","/travel/arizona_easter_pageant/arizona_easter_pageant.htm"]);

//Wyoming
h_sites.push([208,440,"The Cody Murals Visitors Center","/travel/cody_murals_visitors_center.htm"]);

//Iowa
h_sites.push([355,503,"Kanesville Tabernacle","/travel/kanesville_tabernacle/kanesville_tabernacle.htm"]);

//Missouri
h_sites.push([375,530,"Far West and Adam-Ondi-Ahman","/travel/far_west/far_west.htm"]);
h_sites.push([369,550,"Independance and Liberty","/travel/independance/independance.htm"]);

//Illinois
h_sites.push([405,522,"Nauvoo","/travel/nauvoo/navoo.htm"]);

//Ohio
h_sites.push([517,490,"Historic Kirtland","/travel/kirtland/historic_kirtland.htm"]);

//New York
h_sites.push([550,460,"Palmyra and the Hill Cumorah Pageant","/travel/palmyra/palmyra.htm"]);

//Pennsylvania
h_sites.push([570,485,"Harmony","/travel/harmony/harmony.htm"]);

//Vermont
h_sites.push([600,430,"Joseph Smith Memorial Birthplace","/travel/joseph_smith_memorial/joseph_smith_memorial_birthplace.htm"]);