// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
var map;
function initMap() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_div"));
map.setCenter(new GLatLng(37.35,14.15),7);map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
}
}
