Behaviour.addLoadEvent(function() {
	var map = new GMap2(document.getElementById("map"));
	var theatre = new GLatLng(56.396733, -3.431811);
	var concertHall = new GLatLng(56.397725, -3.428936);
	map.addControl(new GSmallMapControl());
	map.setCenter(theatre, 14);
	
	var icon = new GIcon();
	icon.image = "/media/img/maps/marker.png";
	icon.shadow = "/media/img/maps/marker_shadow.png";
	icon.iconSize = new GSize(37, 36);
	icon.shadowSize = new GSize(39, 38);
	icon.iconAnchor = new GPoint(18, 18);

	var theatreMarker = new GMarker(theatre, icon);
	var concertHallMarker = new GMarker(concertHall, icon);
	map.addOverlay(theatreMarker);
	map.addOverlay(concertHallMarker);
	
	GEvent.addListener(theatreMarker, "click", function() {
		theatreMarker.openInfoWindowHtml("Perth Theatre,<br />185 High St,<br />Perth,<br />PH1 5UW");
	});
	GEvent.addListener(concertHallMarker, "click", function() {
		concertHallMarker.openInfoWindowHtml("Perth Concert Hall,<br />Mill St,<br />Perth,<br />PH1 5HZ");
	});
});