/**
* load the contact us map
*/
function loadContactMap() {

	// load the miniMap for item information
	map2 = new GMap2(document.getElementById("contactMap"));
	
	centerPoint = new GLatLng(43.859,-79.36471939086914)

	flagPoint = new GLatLng(43.85934887778336, -79.36471939086914);
	
	map2.setCenter(centerPoint, 15);
	
	map2.setMapType(G_HYBRID_MAP);

	map2.addOverlay(new GMarker(flagPoint));
	
}
