var gMapData= {
	"markers" : [
		{
			"name" : "Kingston Marina",
			"longitude" : -76.479821,
			"latitude" : 44.236329,
			"html" : "The location of Kingston Marina, north of the Lasalle Causeway in Kingston's Inner Harbour.",
			"icon" : { "image" : "../images/icons/yellow_MarkerDot.png" }
		},
		{
			"name" : "Grocery Store",
			"longitude" : -76.4806,
			"latitude" : 44.23339,
			"html" : "Large grocery store is just two blocks away."	,
			"icon" : { "image" : "../images/icons/teal_MarkerDot.png" }
		},
		{
			"name" : "Liquor Store",
			"longitude" : -76.48089,
			"latitude" : 44.232901,
			"html" : "Full service liquor store two blocks away."	,
			"icon" : { "image" : "../images/icons/brown_MarkerDot.png" }
		},
		{
			"name" : "Downtown Business District",
			"longitude" : -76.482525,
			"latitude" : 44.231501,
			"html" : "Downtown Business District is within easy walking distance.",
			"icon" : { "image" : "../images/icons/blue_MarkerDot.png" }
		},
		{
			"name" : "Lasalle Causeway Lift Bridge",
			"longitude" : -76.474607,
			"latitude" : 44.234669,
			"html" : "Lifts on the hour, except rush hours.",
			"icon" : { "image" : "../images/icons/orange_MarkerDot.png" }
		},
		{
			"name" : "Lasalle Causeway Span",
			"longitude" : -76.47156,
			"latitude" : 44.235007,
			"html" : "Clearance: typically <strong>14' to 16'</strong> depending on lake water levels.",
			"icon" : { "image" : "../images/icons/orange_MarkerDot.png" }
		}
	],
	"longitude" : -76.479821,
	"latitude" : 44.236329,  
	"zoom" : 15,
	"bubbleText" : function( marker ) { 
		debugger;
		var cfg= marker.originalConfig;
		return '<h4 class="top">'+ cfg.name+ '</h4><hr><p class="bottom">'+ cfg.html + '</p>' ;
	}
};


