var gblImg = new Array("../images/400.jpg","../images/8.jpg");

function loadMap() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(45.516162, 10.300543), 14);
// Our info window content
var infoTabs = [
  new GInfoWindowTab("Colosio", "Via Alessandrini<br> 14 25086 Rezzato (BS) Italy")
  //new GInfoWindowTab("Contatto", "tel: +39 045 8905600 - Fax: +39 045 8901817"), 
  //new GInfoWindowTab("Mail", "info@omeopatia.org")
];

// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
  marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);
      }
    }
  
addLoadEvent(function(){
  loadMap();
  photoShufflerLaunch(gblImg);
});