    function iconMonastery() {
		// Create our "tiny" marker icon
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "/gmaps/monastery.png";
				blueIcon.iconSize = new GSize(18, 20);
				blueIcon.shadowSize = new GSize(0, 0);
				blueIcon.iconAnchor = new GPoint(9, 20);
				blueIcon.infoWindowAnchor = new GPoint(0, 190);
				return blueIcon;
		}
		
		function iconTopMonastery() {
		// Create our "tiny" marker icon
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "/gmaps/monastery-top.png";
				blueIcon.iconSize = new GSize(18, 20);
				blueIcon.shadowSize = new GSize(0, 0);
				blueIcon.iconAnchor = new GPoint(9, 20);
				blueIcon.infoWindowAnchor = new GPoint(0, 190);
				return blueIcon;
		}
		
		function iconInactMonastery() {
		// Create our "tiny" marker icon
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "/gmaps/monastery-inactive.png";
				blueIcon.iconSize = new GSize(18, 20);
				blueIcon.shadowSize = new GSize(0, 0);
				blueIcon.iconAnchor = new GPoint(9, 20);
				blueIcon.infoWindowAnchor = new GPoint(0, 190);
				return blueIcon;
		}
		
		function iconMonasteryBig() {
		// Create our "tiny" marker icon
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "/gmaps/monastery-large.png";
				blueIcon.iconSize = new GSize(26, 27);
				blueIcon.shadowSize = new GSize(0, 0);
				blueIcon.iconAnchor = new GPoint(13, 27);
				blueIcon.infoWindowAnchor = new GPoint(0, 190);
				return blueIcon;
		}
		
		function iconTopMonasteryBig() {
		// Create our "tiny" marker icon
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "/gmaps/monastery-top-large.png";
				blueIcon.iconSize = new GSize(26, 27);
				blueIcon.shadowSize = new GSize(0, 0);
				blueIcon.iconAnchor = new GPoint(13, 27);
				blueIcon.infoWindowAnchor = new GPoint(0, 190);
				return blueIcon;
		}
		
		function iconInactMonasteryBig() {
		// Create our "tiny" marker icon
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "/gmaps/monastery-inactive-large.png";
				blueIcon.iconSize = new GSize(26, 27);
				blueIcon.shadowSize = new GSize(0, 0);
				blueIcon.iconAnchor = new GPoint(13, 27);
				blueIcon.infoWindowAnchor = new GPoint(0, 190);
				return blueIcon;
		}

