jQuery(document).ready( function() {
	if(jQuery('#map_canvas').length!=0)	 
    initialize();
});

jQuery(window).unload( function () {
	GUnload();
} );

function initialize() {
  if (GBrowserIsCompatible()) {
      
  	// BRATISLAVA
  	var text = "<b><a href='http://www.galenospharm.sk'>GalenosPharm o.z.</a><br/>Krížna 4926/56<br/>82108 Bratislava - Ružinov</b>";
	   x = 48.1573525;
	   y = 17.1274225;
    var map = new GMap2(document.getElementById("map_canvas"));
    map.setCenter(new GLatLng(x, y), 16);
    map.setUIToDefault();
    
    var point = new GLatLng(x, y);
    var marker = new GMarker( point );
    map.addOverlay( marker );
    
    map.addControl(new GLargeMapControl());
	ov = new GOverviewMapControl( new GSize(150 ,150 ) );
	ovmap=ov.getOverviewMap();
	map.addControl(ov);
	

    GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml( text );
	});
    
    marker.openInfoWindowHtml( text );
  }
}
