
$(document).ready(function(){

	var map = new GMap2(document.getElementById("map_canvas"));	

	var location = new GLatLng(49.897523,-97.199821);
	map.setCenter(new GLatLng(49.8965,-97.1700), 11);

	map.setUIToDefault();

	var icon_location = new GLatLng(49.89625, -97.1990);

	var icon = new GIcon();
	
	icon.image = "/std-img/teak-map-icon.png";
	icon.iconSize = new GSize(60, 65);
	icon.iconAnchor = new GPoint(25, 65);
	icon.infoWindowAnchor = new GPoint(28, 68);
	
	var marker = new GMarker(location, icon);
	
	GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml("<b>Teak Furniture Centre</b><br>1400 Sargent Ave.<br>Wpg, MB, R3E 0G5<br>(204) 774-3596");
	});
	
	map.addOverlay(marker);


});


