function initialize() {
	if (document.getElementById("kartacvetnic")) {
		var latlng = new google.maps.LatLng(45.604745,16.172050);
			var settings = {
			zoom: 12,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
			mapTypeId: google.maps.MapTypeId.ROADMAP
			};
	
		var map = new google.maps.Map(document.getElementById("kartacvetnic"), settings);
		var companyPos = new google.maps.LatLng(45.604745,16.172050);
		var companyMarker = new google.maps.Marker({
		position: companyPos,
		map: map,
		title:"Auto servis Cvetnic"
		});
	}
}
