in js/custom.js [1041:1066]
(function(content) {
myLatlng = new google.maps.LatLng(locations[i][2], locations[i][3]);
marker = new google.maps.Marker({
position: myLatlng,
icon:image,
title: overlayTitle,
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(content);
infowindow.open(map, this);
}
})(this, i));
if(locations.length > 1){
bounds.extend(myLatlng);
map.fitBounds(bounds);
}else{
map.setCenter(myLatlng);
}
})(content);