$(function() {
	$("#map").goMap({
		markers: [{ 
			latitude: 56.948813,
			longitude: 24.704004,
			html: {
				ajax: 'info1.html',
				popup: true
			}
		},{ 
			latitude: 54.948813,
			longitude: 21.704004,
			html: {
				content: 'loading...', // Loading content
				ajax: 'info2.html'
			}
		}]
	});
});