/**
 * Data of the hotspots locations for each place are declared as JS object
 * each hotspot is defined by the next properties:
 * - simpleContent: String with the HTML content in the info window.
 * - maximizedContent : URL of the HTML page (AJAX loaded) of the maximized info window.
 * - latitude: latitude of the geographic poing (you can use infopanel for obtain that)
 * - longitude: longitude of the geographic poing (you can use infopanel for obtain that)
 * - zoom: zoom level for hotspot links
 * - icon: url of the custom icon for this place
 */
/* Last Modified: 2007-04-24 */
var locations_data = { locations: [
	{
		simpleContent: "Logan Field<br>Water Street,<br>Lebanon, NH",
		maximizedContent: "",
		latitude: 43.6386,
		longitude: -72.2529,
		zoom:  13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	},
	{
		simpleContent: "Smith Field<br>Maple Street,<br>West Lebanon, NH",
		maximizedContent: "",
		latitude: 43.6537,
		longitude: -72.3066,
		zoom: 13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	},
	{
		simpleContent: "Elks Field<br>Lambombard Road,<br>Lebanon, NH",
		maximizedContent: "",
		latitude: 43.6533,
		longitude: -72.2407,
		zoom: 13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	},
	{
		simpleContent: "Lebanon High School<br>195 Hanover St.,<br>Lebanon, NH",
		maximizedContent: "",
		latitude: 43.6523,
		longitude: -72.2486,
		zoom: 13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	},
	{
		simpleContent: "Riverdale Field<br>Bank St. Extension,<br>Lebanon, NH",
		maximizedContent: "",
		latitude: 43.6439,
		longitude: -72.2360,
		zoom: 13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	},
	{
		simpleContent: "Seminary Hill School<br>20 Seminary Hill,<br>West Lebanon, NH",
		maximizedContent: "",
		latitude: 43.6431,
		longitude: -72.3085,
		zoom: 13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	},
	{
		simpleContent: "Lebanon Junior High School<br>75 Bank Street<br>Lebanon, NH",
		maximizedContent: "",
		latitude: 43.644067,
		longitude: -72.243943,
		zoom: 13,
		icon: "images/BaseballMarker.png",
		iconShadow: "images/BaseballMarker-shadow.png"
	}


]};