$(function() {
	$("#map").goMap({
		markers: [{ 
			latitude: 56.948813,
			longitude: 24.704004,
			html: {
				content: 'Click to map for add new marker!
Drag the marker!
Double click to the marker for remove it!',
				popup: true
			}
		}],
		icon: '../img/apartment.png',
		addMarker: 'single',
		disableDoubleClickZoom: true
	});
	$("#clear").click(function() { 
		$.goMap.clearMarkers(); 
	});
});