function initialize() {
  var myOptions = {
    zoom: 7,
    center: new google.maps.LatLng(44.2, 16.0),
	disableDefaultUI: true,
    mapTypeId: google.maps.MapTypeId.HYBRID
  }
  var map = new google.maps.Map(document.getElementById("map_canvas"),
                                myOptions);

  setMarkers(map, beaches);
}

/**
 * Data for the markers consisting of a name, a LatLng and a zIndex for
 * the order in which these markers should display on top of each
 * other.
 */
    var beaches = [
    ['Izola', 45.537197, 13.656821, 1, 'izhodisce.asp?ide=80'],
    ['Vrsar', 45.149933, 13.602169, 2, 'izhodisce.asp?ide=81'],
    ['Veruda', 44.84023, 13.839941, 3, 'izhodisce.asp?ide=82'],
    ['Pomer (Pula)', 44.821177, 13.90337, 4, 'izhodisce.asp?ide=83'],
    ['Sukošan', 44.053483, 15.30035, 5, 'izhodisce.asp?ide=85'],
    ['Biograd na moru', 43.940166, 15.442057, 6, 'izhodisce.asp?ide=86'],
    ['Murter-MH', 43.784232, 15.64333, 7, 'izhodisce.asp?ide=125'],
    ['Murter Jezera', 43.784232, 15.64333, 8, 'izhodisce.asp?ide=126'],
    ['Primošten', 43.586189, 15.931892, 9, 'izhodisce.asp?ide=88'],
    ['Trogir-AMS', 43.513732, 16.248586, 10, 'izhodisce.asp?ide=89'],
    ['Trogir', 43.513732,16.248586, 11, 'izhodisce.asp?ide=87'],
    ['Kaštela', 43.545935, 16.404819, 12, 'izhodisce.asp?ide=90'],
    ['Split', 43.501655, 16.429925, 13, 'izhodisce.asp?ide=194'],	
    ['Dubrovnik', 42.641157, 18.112485, 14, 'izhodisce.asp?ide=91']
    ];

function setMarkers(map, locations) {

  var image = new google.maps.MarkerImage('img/googlemapicon.png',
      new google.maps.Size(45, 20),
      new google.maps.Point(0,0));

  for (var i = 0; i < locations.length; i++) {
    var beach = locations[i];
    var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
    var marker = new google.maps.Marker({
        position: myLatLng,
        map: map,
        icon: image,
        title: beach[0],
        zIndex: beach[3],
		url: beach[4]
    });
    google.maps.event.addListener(marker, 'click', function() {window.location.href = this.url;});
  }
}

