// Creates a marker at the given point with the given number label
function createMarker(point, icon, name) {
  var marker = new GMarker(point, icon);
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(name);
  });
  return marker;
}

function createIcon(file){
	
	// Create our "tiny" marker icon
	var icon = new GIcon();
	icon.image = "/images/googleMarkers/" + file;
	icon.shadow = "/images/google/markers/mm_20_shadow.png";
	icon.iconSize = new GSize(12, 20);
	icon.shadowSize = new GSize(22, 20);
	icon.iconAnchor = new GPoint(6, 20);
	icon.infoWindowAnchor = new GPoint(5, 1);
	return icon;
}