

$(function()
{
	var div = document.getElementById("contacts_map");
	if (div != undefined && typeof div == "object")
	{
		initialize_contacts_map();
	}
});


function initialize_contacts_map()
{
	var map = new GMap2(document.getElementById("contacts_map"));
	var ll = new GLatLng(54.675127526545204,25.29131054878235);

	map.setCenter(ll,16);
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.setMapType(G_HYBRID_MAP);

	var marker = new GMarker(ll,{draggable: true});
//	GEvent.addListener(marker, "dragend", function() {
//		marker.openInfoWindowHtml(marker.getPoint().lat() + " " + marker.getPoint().lng());
//	});

	GEvent.addListener(marker,"click", function()
	{
		map.openInfoWindowHtml(ll,"<img style='width:250px;' src='/im/artoteka_logo.jpg'>");
	});


	map.addOverlay(marker);
}



