
    //<![CDATA[
	
	// Create our "tiny" marker icon
var icon = new GIcon();
icon.image = "images/pin.png";
icon.shadow = "images/pin_shadow.png";
icon.iconSize = new GSize(14, 27);
icon.shadowSize = new GSize(31, 23);
icon.iconAnchor = new GPoint(12, 18);
icon.infoWindowAnchor = new GPoint(7, 27);

	function load(){
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(48.847617732169574, 2.343038320541382), 15);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		
		var point = new GLatLng(48.847617732169574, 2.343038320541382);
		map.addOverlay(createMarker(point, "11 Rue Cajas"));
  		
      }
    }
	
	
// Creates a marker at the given point with the given label
function createMarker(point, label) {
  var marker = new GMarker(point, icon);
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml('<div class="bubbletext">' + label + '</div>');
  });
  return marker;
}
    //]]>
	
	function swap(img, caption){
		$('stage').src = img;
		$('description').innerHTML = caption;
	}