//<![CDATA[

  function loadWeWillBeHere(map) {

 // Creates a marker whose information window displays the location and date.
 
      function createMarker(point,iconOf,locationOf,dateOf,distanceOf) {
        var marker = new GMarker(point,iconOf);
      
        // Show this marker's index in the info window when it is clicked
        var html = "Location: <b>" + locationOf +"</b><BR>Date: <b>" + dateOf +"</b><BR>Distance: <b>" +distanceOf +" km</b>";
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
      
        return marker;
      }

    var iconYellow = new GIcon();
    iconYellow.image = "http://www.xor.org.uk/silkroute/panam2006/graphics/yellowdot.png";
    iconYellow.iconSize = new GSize(11, 11);
    iconYellow.iconAnchor = new GPoint(5, 5);
    iconYellow.infoWindowAnchor = new GPoint(5, 5);

    var iconRed = new GIcon();
    iconRed.image = "http://www.xor.org.uk/silkroute/panam2006/graphics/reddot.png";
    iconRed.iconSize = new GSize(11, 11);
    iconRed.iconAnchor = new GPoint(5, 5);
    iconRed.infoWindowAnchor = new GPoint(5, 5);


  }

//]]>
