if (top.location == location) top.location.href = "index.htm";

// Setup other global vars
var items = [];                       // Array holds items for geographic display
var map;                              // Google maps object
var mgr;                              // MarkerManager object
var icon = new GIcon(G_DEFAULT_ICON); // Marker icon object
icon.image = "marker-blue.png";       // Marker icon image
var selectname, selectcity;           // Selection criteria

// Setup the map
function setupMap() {
  // Setup map
  resizeCanvas();
  map = new GMap2( document.getElementById("map_canvas") );
  focusMap();

  map.setMapType( G_NORMAL_MAP );
  map.enableScrollWheelZoom();
  map.enableContinuousZoom();
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());

  mgr = new MarkerManager(map, { maxZoom: 21 } );
  GEvent.addListener( map, "zoomend", function(old,nw) { itemsToMap(); } );
  GEvent.addListener( map, "click", function(overlay, point) { if (overlay && overlay.myhtml) overlay.openInfoWindowHtml("<span class=iw>" + overlay.myhtml + "</span>"); });
  itemsToMap();
  itemsToText();
}

function selectName( name ) {
  if ( name == '0' ) selectname = null;
  else selectname = name;
  itemsToMap();
  itemsToText();
  focusMap();
}
function selectCity( city ) {
  if ( city == '0' ) selectcity = null;
  else selectcity = city;
  itemsToMap();
  itemsToText();
  focusMap();
}

function focusMap() {
  var b = new GLatLngBounds();
  for (var i = 0; i < items.length; i++) {
    if ( (!selectname||selectname==items[i][0]) && (!selectcity||selectcity==items[i][5]) ) {
      b.extend( items[i][6] );
    }
  }
  var z = Math.max( 1, map.getBoundsZoomLevel(b) - (selectname||selectcity?1:0) );
  map.setCenter( b.getCenter(), z );
}


// Put items on the map
function itemsToMap() {
  // Clear all markers
  map.clearOverlays();
  mgr.clearMarkers();
  var mks = [];

  // Put items in markers
  var markers = [];
  var space = 10;
  for (var i = 0; i < items.length; i++ ) {
    if ( (!selectname||selectname==items[i][0]) && (!selectcity||selectcity==items[i][5]) ) {
      var match = -1;
      var itemPoint = map.fromLatLngToDivPixel(items[i][6]);
      for (var j = 0; j < markers.length; j++ ) if ( markers[j].bounds.containsPoint( itemPoint ) ) { match = j; break; }
      if ( match == -1 ) {
        var m = markers[markers.length] = new Object();
        m.items = [ items[i] ];
        var point = map.fromLatLngToDivPixel(items[i][6]);
        m.bounds = new GBounds( (point.x - space), (point.y - space), (point.x + space), (point.y + space) );
      } else {
        markers[match].items.push( items[i] );
      }
    }
  }

  // Add markers to the map
  for (var i = 0; i < markers.length; i++ ) {

    // Groepeer per hogeschool
    var its = markers[i].items;
    var hsn = [];

    for (var j = 0; j < its.length; j++ ) {
      var found = -1;
      for (var k=0; k < hsn.length; k++ ) if ( hsn[k][0][0] == its[j][0] ) { found = k; break; }
      if ( found < 0 ) {
        found = hsn.length;
        hsn[found] = [];
      }
      hsn[ found ].push( its[j] );
    }

    // Stel tekst samen
    var maxmsg = 15;
    var msg = 0;
    var txt = "<ul>";
    for (var j = 0; j < hsn.length; j++ ) {
      if ( msg >= maxmsg - 1 ) { msg+=2; break; }
      txt += "<li><a href='http://" + hsn[j][0][1] + "' target='_new'>" + hsn[j][0][0] + "</a>";
      msg++;
      for (var k = 0; k < hsn[j].length; k++ ) {
        if ( msg >= maxmsg ) { msg++; break; }
        txt += "<br>" + hsn[j][k][2] + " " + hsn[j][k][3] + ", " + hsn[j][k][4] + " " + hsn[j][k][5];
        msg++;
      }
    }
    if ( msg > maxmsg ) txt += "<li class=zoom>Zoom in voor meer hogescholen/locaties!";
    txt += "</ul>";

    // Stel tooltip samen
    var title = "";
    if ( hsn.length == 1 ) title = hsn[0][0][0];
    else title = hsn.length + " hogescholen";
    title += ", " + its.length + " locatie" + ((its.length) > 1 ? "s" : "");

    var marker = new GMarker( its[0][6], {title: title, icon: icon} );
    marker.myhtml = txt;
    mks.push(marker);

  }

  var z = map.getZoom();
  if ( z < 17 ) mgr.addMarkers( mks, z, z );
  else mgr.addMarkers( mks, 17 );

//  mgr.addMarkers( mks, map.getZoom(), map.getZoom() );
  mgr.refresh();

}

//NEW
function itemsToText() {
  var dom = parent.document.getElementById("textual");
  if ( dom ) {
    var its = items;
    var hsn = [];

    // Sorteer per hogeschool
    for (var j = 0; j < its.length; j++ ) {
      if ( (!selectname||selectname==its[j][0]) && (!selectcity||selectcity==its[j][5]) ) {
        var found = -1;
        for (var k=0; k < hsn.length; k++ ) if ( hsn[k][0][0] == its[j][0] ) { found = k; break; }
        if ( found < 0 ) {
          found = hsn.length;
          hsn[found] = [];
        }
        hsn[ found ].push( its[j] );
      }
    }

    // Verwijder oude nodes
    while (dom.hasChildNodes()) dom.removeChild( dom.lastChild ); 

    // Titel
    var select = false;
    if ( selectname || selectcity ) {
      var title = "Locaties";
      if ( selectname ) title += " van " + selectname;
      if ( selectcity ) title += " in " + selectcity;
      var t = parent.document.createElement("h1");
      t.appendChild( parent.document.createTextNode(title) );
      dom.appendChild( t );
      select = ( hsn.length < 4 );
    } else {
      dom.appendChild( parent.document.createElement("p") );
    }

    // Lijst
    var ul = parent.document.createElement("ul");
    if ( select && hsn.length == 0 ) {
      var li = parent.document.createElement("div");
      li.innerHTML = "<li class=notfound>Geen locaties gevonden!";
      ul.appendChild( li );
    }
    for (var i = 0; i < hsn.length; i++ ) {
      // Naam hogeschool
      var name = "<li><a href='#' onclick='javascript:showElement(\"hs"+i+"\");return false;'>" + hsn[i][0][0] + "</a>";
      // Locaties
      var head = "", other = "", countother = 0;
      for (var j = 0; j < hsn[i].length; j++ ) {
        if ( hsn[i][j][7] == 1 ) {
          // Hoofdvestiging
          head = "<b>Hoofdvestiging</b><br>";
          head += hsn[i][j][2] + " " + hsn[i][j][3] + "<br>" + hsn[i][j][4] + " " + hsn[i][j][5] + "<br><br>";
        } else {
          // Nevenvestigingen
          other += hsn[i][j][2] + " " + hsn[i][j][3] + ", " + hsn[i][j][4] + " " + hsn[i][j][5] + "<br>";
          countother++;
        }
      }
      if ( other.length > 0 ) other = "<b>Nevenvestiging"+(countother>1?"en":"")+"</b><br>" + other + "<br>";
      // Website
      var web = "<b>Website</b><br><a href='http://"+hsn[i][0][1]+"' target=_new>"+hsn[i][0][1]+"</a></i>";
      // Item samenstellen    
      var li = parent.document.createElement("div");
      li.innerHTML = name + "<span id=hs"+i+" class=address style='display:"+(select?"block":"none")+"'>" +
        head + other + web + "</span>";
      ul.appendChild( li );
    }
    dom.appendChild(ul);

  }

}


// Initialize application
function initialize() { if (GBrowserIsCompatible()) {

  // Define data
  items[ 0 ] = [ "Aeres Groep", "www.aeres.nl", "Bovenbuurtweg", "27", "6717 XA", "Ede", new GLatLng( 52.018197, 5.661698 ), 1 ];
  items[ 1 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Jodenbreestraat", "3", "1011 NG", "Amsterdam", new GLatLng( 52.369625, 4.901515 ), 1 ];
  items[ 2 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Onderlangs", "9", "6812 CE", "Arnhem", new GLatLng( 51.983509, 5.894602 ), 1 ];
  items[ 3 ] = [ "Avans Hogeschool", "www.avans.nl", "Hogeschoollaan", "1", "4818 CR", "Breda", new GLatLng( 51.584287, 4.795287 ), 1 ];
  items[ 4 ] = [ "Christelijke Agrarische Hogeschool", "www.cah.nl", "De Drieslag", "1", "8251 JZ", "Dronten", new GLatLng( 52.529584, 5.697628 ), 1 ];
  items[ 5 ] = [ "Christelijke Hogeschool Ede", "www.che.nl", "Oude Kerkweg", "100", "6717 JS", "Ede", new GLatLng( 52.019822, 5.664314 ), 1 ];
  items[ 6 ] = [ "Christelijke Hogeschool Windesheim", "www.windesheim.nl", "Campus", "2-6", "8017 CA", "Zwolle", new GLatLng( 52.500007, 6.081745 ), 1 ];
  items[ 7 ] = [ "Codarts Hogeschool voor de Kunsten", "www.codarts.nl", "Kruisplein", "26", "3012 CC", "Rotterdam", new GLatLng( 51.922166, 4.471493 ), 1 ];
  items[ 8 ] = [ "Design Academy Eindhoven", "www.designacademy.nl", "Emmasingel", "14", "5611 AZ", "Eindhoven", new GLatLng( 51.439529, 5.475015 ), 1 ];
  items[ 9 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Rachelsmolen", "1", "5612 MA", "Eindhoven", new GLatLng( 51.450703, 5.482019 ), 1 ];
  items[ 10 ] = [ "Gereformeerde Hogeschool", "www.gereformeerdehogeschool.nl", "Grasdorpstraat", "2", "8012 EN", "Zwolle", new GLatLng( 52.506879, 6.103548 ), 1 ];
  items[ 11 ] = [ "Gerrit Rietveld Academie", "www.gerritrietveldacademie.nl", "Frederik Roeskestraat", "96", "1076 ED", "Amsterdam", new GLatLng( 52.341391, 4.861307 ), 1 ];
  items[ 12 ] = [ "Haagse Hogeschool", "www.hhs.nl", "Johanna Westerdijkplein", "75", "2521 EN", "Den Haag", new GLatLng( 52.067331, 4.323769 ), 1 ];
  items[ 13 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikeplein", "1", "9747 AS", "Groningen", new GLatLng( 53.240322, 6.531916 ), 1 ];
  items[ 14 ] = [ "HAS Den Bosch", "www.hasdenbosch.nl", "Onderwijsboulevard", "221", "5223 DE", "Den Bosch", new GLatLng( 51.685855, 5.285936 ), 1 ];
  items[ 15 ] = [ "Hogeschool de Kempel", "www.kempel.nl", "Deurneseweg", "11", "5709 AH", "Helmond", new GLatLng( 51.471225, 5.708675 ), 1 ];
  items[ 16 ] = [ "Hogeschool Domstad", "www.domstad.nl", "Koningsbergerstraat", "9", "3531 AJ", "Utrecht", new GLatLng(  52.087525, 5.099408 ), 1 ];
  items[ 17 ] = [ "Hogeschool Driestar Educatief", "www.driestar-educatief.nl", "Burg. Jamessingel", "2", "2803 PD", "Gouda", new GLatLng( 52.018614, 4.69902 ), 1 ];
  items[ 18 ] = [ "Hogeschool Edith Stein", "www.edith.nl", "M.A. de Ruyterstraat", "3", "7556 CW", "Hengelo", new GLatLng( 52.294401, 6.762229 ), 1 ];
  items[ 19 ] = [ "Hogeschool Helicon", "www.hhelicon.nl", "Socrateslaan", "22a", "3707 GL", "Zeist", new GLatLng( 52.098766, 5.258059 ), 1 ];
  items[ 20 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Theresiastraat", "8", "2593 AN", "Den Haag", new GLatLng( 52.08313, 4.330326 ), 1 ];
  items[ 21 ] = [ "Hogeschool IPABO", "www.hs-ipabo.edu", "Jan Tooropstraat", "136", "1061 AD", "Amsterdam", new GLatLng( 52.367206, 4.836528 ), 1 ];
  items[ 22 ] = [ "Hogeschool Leiden", "www.hsleiden.nl", "Zernikedreef", "11", "2333 CK", "Leiden", new GLatLng( 52.166973, 4.468498 ), 1 ];
  items[ 23 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Museumpark", "40", "3015 CX", "Rotterdam", new GLatLng( 51.914066, 4.46927 ), 1 ];
  items[ 24 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Oudenoord", "330-340", "3513 EX", "Utrecht", new GLatLng(  52.099094, 5.10937 ), 1 ];
  items[ 25 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Spui", "21", "1012 WX", "Amsterdam", new GLatLng( 52.290312, 4.963722 ), 1 ];
  items[ 26 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Ruitenberglaan", "31", "6826 CC", "Arnhem", new GLatLng( 51.988078, 5.949523 ), 1 ];
  items[ 27 ] = [ "Hogeschool Van Hall Larenstein", "www.vanhall-larenstein.nl", "Droevendaalsesteeg", "2", "6708 PB", "Wageningen", new GLatLng( 51.986368, 5.664571 ), 1 ];
  items[ 28 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Lange Viestraat", "2", "3511 BK", "Utrecht", new GLatLng(  52.093315, 5.116449 ), 1 ];
  items[ 29 ] = [ "Hogeschool Zeeland", "www.hz.nl", "Edisonweg", "4", "4382 NW", "Vlissingen", new GLatLng( 51.451455, 3.588736 ), 1 ];
  items[ 30 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Nieuw Eyckholt", "300", "6419 DJ", "Heerlen", new GLatLng( 50.8851, 5.966311 ), 1 ];
  items[ 31 ] = [ "Hotelschool Den Haag", "www.hotelschool.nl", "Brusselselaan", "2", "2587 AH", "Den Haag", new GLatLng( 52.107673, 4.294208 ), 1 ];
  items[ 32 ] = [ "Iselinge Hogeschool", "www.iselingehogeschool.nl", "Bachlaan", "11", "7002 MZ", "Doetinchem", new GLatLng( 51.967696, 6.302922 ), 1 ];
  items[ 33 ] = [ "Katholieke Pabo Zwolle", "www.kpz-web.nl", "Ten Oeverstraat", "68", "8012 EW", "Zwolle", new GLatLng( 52.506199, 6.108031 ), 1 ];
  items[ 34 ] = [ "Koninklijk Conservatorium", "www.koncon.nl", "Juliana van Stolberglaan", "1", "2595 CA", "Den Haag", new GLatLng( 52.081537, 4.331736 ), 1 ];
  items[ 35 ] = [ "Koninklijke Academie van Beeldende Kunsten", "www.kabk.nl", "Prinsessegracht", "4", "2514 AN", "Den Haag", new GLatLng( 52.081694, 4.319554 ), 1 ];
  items[ 36 ] = [ "Marnix Academie", "www.hsmarnix.nl", "Vogelsanglaan", "1", "3571 ZM", "Utrecht", new GLatLng(  52.103507, 5.133999 ), 1 ];
  items[ 37 ] = [ "NHTV Breda", "www.nhtv.nl", "Mgr. Hopmansstraat", "1", "4817 JT", "Breda", new GLatLng( 51.590726, 4.79499 ), 1 ];
  items[ 38 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Jacob Catsplein", "1", "8913 CS", "Leeuwarden", new GLatLng( 53.199743, 5.786201 ), 1 ];
  items[ 39 ] = [ "Saxion", "www.saxion.nl", "M.H. Tromplaan", "28", "7513 AB", "Enschede", new GLatLng( 52.220114, 6.887477 ), 1 ];
  items[ 40 ] = [ "Stenden Hogeschool", "www.stenden.com", "Rengerslaan", "8", "8917 DD", "Leeuwarden", new GLatLng( 53.211084, 5.796193 ), 1 ];
  items[ 41 ] = [ "Stoas Hogeschool", "www.stoashogeschool.nl", "Bovenbuurtweg", "27", "6717 XA", "Ede", new GLatLng( 52.018197, 5.661698 ), 1 ];
  items[ 42 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Bergerweg", "200", "1817 MN", "Alkmaar", new GLatLng( 52.64137, 4.723724 ), 0 ];
  items[ 43 ] = [ "Hogeschool IPABO", "www.hs-ipabo.edu", "Bergerweg", "1", "1815 AC", "Alkmaar", new GLatLng( 52.635693, 4.737921 ), 0 ];
  items[ 44 ] = [ "Hogeschool IPABO", "www.hs-ipabo.edu", "Gabri&euml;l Metsulaan", "34", "1816 EP", "Alkmaar", new GLatLng( 52.634743, 4.722944 ), 0 ];
  items[ 45 ] = [ "Hogeschool IPABO", "www.hs-ipabo.edu", "Judith de Leysterstraat", "4", "1816 JZ", "Alkmaar", new GLatLng( 52.633343, 4.723774 ), 0 ];
  items[ 46 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Landdroststraat", "2", "1315 RG", "Almere", new GLatLng( 52.372046, 5.223665 ), 0 ];
  items[ 47 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "P.J. Oudweg", "25", "1314 CH", "Almere", new GLatLng( 52.37568, 5.216112 ), 0 ];
  items[ 48 ] = [ "Hogeschool IPABO", "www.hs-ipabo.edu", "Landdroststraat", "2", "1315 RG", "Almere", new GLatLng( 52.372046, 5.223665 ), 0 ];
  items[ 49 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Berkenweg", "11", "3818 LA", "Amersfoort", new GLatLng(  52.151615, 5.377678 ), 0 ];
  items[ 50 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Hooglandseweg-Noord", "140", "3813 VE", "Amersfoort", new GLatLng(  52.164993, 5.381621 ), 0 ];
  items[ 51 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Grote Spui", "11", "3811 GA", "Amersfoort", new GLatLng(  52.158326, 5.386076 ), 0 ];
  items[ 52 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Laan van Kronenburg", "7a", "1183 AS", "Amstelveen", new GLatLng( 52.32164, 4.878086 ), 0 ];
  items[ 53 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Amsteldijk", "166", "1079 LH", "Amsterdam", new GLatLng( 52.343783, 4.91289 ), 0 ];
  items[ 54 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Dokter Meurerlaan", "8", "1067 SM", "Amsterdam", new GLatLng( 52.369148, 4.805167 ), 0 ];
  items[ 55 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "H.J.E. Wenckebachweg", "144-148", "1096 AR", "Amsterdam", new GLatLng( 52.33861, 4.926406 ), 0 ];
  items[ 56 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "James Wattstraat", "79", "1097 DL", "Amsterdam", new GLatLng( 52.349053, 4.920659 ), 0 ];
  items[ 57 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Mauritskade", "11", "1091 GC", "Amsterdam", new GLatLng( 52.360125, 4.910666 ), 0 ];
  items[ 58 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Rhijnspoorplein", "1", "1091 GC", "Amsterdam", new GLatLng( 52.359831, 4.908988 ), 0 ];
  items[ 59 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Weesperzijde", "190", "1097 DZ", "Amsterdam", new GLatLng( 52.345503, 4.915385 ), 0 ];
  items[ 60 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Wibautstraat", "80-86", "1091 GP", "Amsterdam", new GLatLng( 52.355438, 4.911343 ), 0 ];
  items[ 61 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Boelelaan", "1109", "1081 HV", "Amsterdam", new GLatLng( 52.334917, 4.887882 ), 0 ];
  items[ 62 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Louwesweg", "1", "1066 EA", "Amsterdam", new GLatLng( 52.346639, 4.824769 ), 0 ];
  items[ 63 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Dapperstraat", "315", "1093 BS", "Amsterdam", new GLatLng( 52.360749, 4.92873 ), 0 ];
  items[ 64 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Hortusplantsoen", "2", "1018 TZ", "Amsterdam", new GLatLng( 52.366317, 4.905836 ), 0 ];
  items[ 65 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Markenplein", "1", "1011 MV", "Amsterdam", new GLatLng( 52.368542, 4.905399 ), 0 ];
  items[ 66 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Mauritskade", "56", "1092 AD", "Amsterdam", new GLatLng( 52.361929, 4.917983 ), 0 ];
  items[ 67 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Nieuwezijds Voorburgwal", "4-10", "1012 RZ", "Amsterdam", new GLatLng( 52.377524, 4.895394 ), 0 ];
  items[ 68 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Oosterdokskade", "151", "1011 DL", "Amsterdam", new GLatLng( 52.376092, 4.906822 ), 0 ];
  items[ 69 ] = [ "Amsterdamse Hogeschool voor de Kunsten", "www.ahk.nl", "Waterlooplein", "211", "1011 PG", "Amsterdam", new GLatLng( 52.367844, 4.903314 ), 0 ];
  items[ 70 ] = [ "Hotelschool Den Haag", "www.hotelschool.nl", "Prinses Irenestraat", "59", "1077 WV", "Amsterdam", new GLatLng( 52.341559, 4.869857 ), 0 ];
  items[ 71 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Keizersgracht", "105", "1015 CH", "Amsterdam", new GLatLng( 52.376397, 4.887231 ), 0 ];
  items[ 72 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Utrechtsedwarsstraat", "40-42", "1017 WG", "Amsterdam", new GLatLng( 52.361216, 4.897786 ), 0 ];
  items[ 73 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Fraijlemaborg", "133", "1102 CV", "Amsterdam Zuidoost", new GLatLng( 52.316068, 4.947354 ), 0 ];
  items[ 74 ] = [ "Hogeschool van Amsterdam", "www.hva.nl", "Tafelbergweg", "51", "1105 BD", "Amsterdam Zuidoost", new GLatLng( 52.290312, 4.963722 ), 0 ];
  items[ 75 ] = [ "Saxion", "www.saxion.nl", "Kerklaan", "21", "7311 AA", "Apeldoorn", new GLatLng( 52.217593, 5.961134 ), 0 ];
  items[ 76 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Bethani&euml;nstraat", "250", "6826 TJ", "Arnhem", new GLatLng( 51.978391, 5.959654 ), 0 ];
  items[ 77 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Beverweerdlaan", "3", "6825 AE", "Arnhem", new GLatLng( 51.98981, 5.952625 ), 0 ];
  items[ 78 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "IJssellaan", "82", "6826 DW", "Arnhem", new GLatLng( 51.983412, 5.946799 ), 0 ];
  items[ 79 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Ruitenberglaan", "26", "6826 CC", "Arnhem", new GLatLng( 51.989389, 5.949955 ), 0 ];
  items[ 80 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Ruitenberglaan", "27", "6826 CC", "Arnhem", new GLatLng( 51.987724, 5.945425 ), 0 ];
  items[ 81 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Ruitenberglaan", "29", "6826 CC", "Arnhem", new GLatLng( 51.988066, 5.947409 ), 0 ];
  items[ 82 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Willemsplein", "23", "6811 KB", "Arnhem", new GLatLng( 51.983495, 5.902688 ), 0 ];
  items[ 83 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Agnietenplaats", "2", "6822 JD", "Arnhem", new GLatLng( 51.988017, 5.91542 ), 0 ];
  items[ 84 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Utrechtsestraat", "85", "6811 LW", "Arnhem", new GLatLng( 51.984463, 5.894823 ), 0 ];
  items[ 85 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Industrieweg", "34a", "9403 AB", "Assen", new GLatLng( 53.00461, 6.569422 ), 0 ];
  items[ 86 ] = [ "Stenden Hogeschool", "www.stenden.com", "Zeemanstraat", "1", "9406 BZ", "Assen", new GLatLng( 52.996081, 6.549032 ), 0 ];
  items[ 87 ] = [ "Hogeschool Driestar Educatief", "www.driestar-educatief.nl", "Baron Van Nagellstraat", "136", "3771 LL", "Barneveld", new GLatLng( 52.167319, 5.597966 ), 0 ];
  items[ 88 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Nobellaan", "50", "4622 AJ", "Bergen op Zoom", new GLatLng( 51.498421, 4.301735 ), 0 ];
  items[ 89 ] = [ "Avans Hogeschool", "www.avans.nl", "Beukenlaan", "1", "4834 CR", "Breda", new GLatLng( 51.57987, 4.810114 ), 0 ];
  items[ 90 ] = [ "Avans Hogeschool", "www.avans.nl", "Lovensdijkstraat", "61-63", "4818 AJ", "Breda", new GLatLng( 51.585331, 4.793366 ), 0 ];
  items[ 91 ] = [ "NHTV Breda", "www.nhtv.nl", "Archimedesstraat", "17", "4816 BA", "Breda", new GLatLng( 51.599358, 4.785466 ), 0 ];
  items[ 92 ] = [ "NHTV Breda", "www.nhtv.nl", "Mgr. Hopmansstraat", "15", "4817 JT", "Breda", new GLatLng( 51.589202, 4.795136 ), 0 ];
  items[ 93 ] = [ "NHTV Breda", "www.nhtv.nl", "Reduitlaan", "41", "4814 DC", "Breda", new GLatLng( 51.590861, 4.762083 ), 0 ];
  items[ 94 ] = [ "NHTV Breda", "www.nhtv.nl", "Sibeliuslaan", "13", "4837 CA", "Breda", new GLatLng( 51.56641, 4.771985 ), 0 ];
  items[ 95 ] = [ "Gereformeerde Hogeschool", "www.gereformeerdehogeschool.nl", "Jan van Riebeeckstraat", "27", "3752 XK", "Bunschoten-Spakenburg", new GLatLng( 52.23548, 5.370006 ), 0 ];
  items[ 96 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Kalfjeslaan", "2", "2623 AA", "Delft", new GLatLng( 51.988348, 4.361318 ), 0 ];
  items[ 97 ] = [ "Avans Hogeschool", "www.avans.nl", "Onderwijsboulevard", "215", "5223 DE", "Den Bosch", new GLatLng( 51.687743, 5.287093 ), 0 ];
  items[ 98 ] = [ "Avans Hogeschool", "www.avans.nl", "Onderwijsboulevard", "256", "5223 DJ", "Den Bosch", new GLatLng( 51.689763, 5.287965 ), 0 ];
  items[ 99 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Frans Fransenstraat", "15", "5231 MG", "Den Bosch", new GLatLng( 51.704738, 5.312088 ), 0 ];
  items[ 100 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Onderwijsboulevard", "215", "5223 DE", "Den Bosch", new GLatLng( 51.687743, 5.287093 ), 0 ];
  items[ 101 ] = [ "Stoas Hogeschool", "www.stoashogeschool.nl", "Onderwijsboulevard", "221", "5223 DE", "Den Bosch", new GLatLng( 51.685855, 5.285936 ), 0 ];
  items[ 102 ] = [ "Haagse Hogeschool", "www.hhs.nl", "Laan van Poot", "363", "2566 DA", "Den Haag", new GLatLng( 52.075858, 4.24237 ), 0 ];
  items[ 103 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Rijswijkseplein", "79", "2516 GZ", "Den Haag", new GLatLng( 52.071994, 4.323932 ), 0 ];
  items[ 104 ] = [ "Saxion", "www.saxion.nl", "Handelskade", "75", "7417 DH", "Deventer", new GLatLng( 52.254228, 6.16691 ), 0 ];
  items[ 105 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Wildenborch", "6", "1112 XB", "Diemen", new GLatLng( 52.328178, 4.962072 ), 0 ];
  items[ 106 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Achterom", "103", "3311 KB", "Dordrecht", new GLatLng( 51.811807, 4.666464 ), 0 ];
  items[ 107 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Achterom", "103", "3311 KB", "Dordrecht", new GLatLng( 51.811807, 4.666464 ), 0 ];
  items[ 108 ] = [ "Stoas Hogeschool", "www.stoashogeschool.nl", "Agripark Oost", "2", "8251 KH", "Dronten", new GLatLng( 52.528243, 5.698447 ), 0 ];
  items[ 109 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Byrdstraat", "21", "5623 PL", "Eindhoven", new GLatLng( 51.454348, 5.479627 ), 0 ];
  items[ 110 ] = [ "Fontys Hogescholen", "www.fontys.nl", "De Horsten", "8-10", "5612 AX", "Eindhoven", new GLatLng( 51.449336, 5.49528 ), 0 ];
  items[ 111 ] = [ "Fontys Hogescholen", "www.fontys.nl", "De Lismortel", "25", "5612 AR", "Eindhoven", new GLatLng( 51.450064, 5.493083 ), 0 ];
  items[ 112 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Ds.Th. Fliednerstraat", "2", "5631 BN", "Eindhoven", new GLatLng( 51.4532, 5.48946 ), 0 ];
  items[ 113 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Het Eeuwsel", "1-2", "5612 AS", "Eindhoven", new GLatLng( 51.449923, 5.490554 ), 0 ];
  items[ 114 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Oude Torenstraat", "17", "5623 PG", "Eindhoven", new GLatLng( 51.453493, 5.481105 ), 0 ];
  items[ 115 ] = [ "Stenden Hogeschool", "www.stenden.com", "Van Schaikweg", "94", "7811 KL", "Emmen", new GLatLng( 52.778856, 6.911106 ), 0 ];
  items[ 116 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Hallenweg", "5", "7522 NH", "Enschede", new GLatLng( 52.238504, 6.854399 ), 0 ];
  items[ 117 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Van Essengaarde", "10", "7511 PN", "Enschede", new GLatLng( 52.222128, 6.896656 ), 0 ];
  items[ 118 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "M.H. Tromplaan", "28", "7513 AB", "Enschede", new GLatLng( 52.220114, 6.887477 ), 0 ];
  items[ 119 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Akkerstraat", "99", "9717 KZ", "Groningen", new GLatLng( 53.227927, 6.557384 ), 0 ];
  items[ 120 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Antonius Deusinglaan", "1", "9713 AV", "Groningen", new GLatLng( 53.224524, 6.57063 ), 0 ];
  items[ 121 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Eyssoniusplein", "18", "9714 CE", "Groningen", new GLatLng( 53.226964, 6.566247 ), 0 ];
  items[ 122 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Gedempte Zuiderdiep", "158", "9711 HN", "Groningen", new GLatLng( 53.214743, 6.562166 ), 0 ];
  items[ 123 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Veemarktstraat", "76", "9724 GA", "Groningen", new GLatLng( 53.214585, 6.577234 ), 0 ];
  items[ 124 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikepark", "2", "9747 AN", "Groningen", new GLatLng( 53.243082, 6.533029 ), 0 ];
  items[ 125 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikepark", "4", "9747 AN", "Groningen", new GLatLng( 53.243267, 6.533758 ), 0 ];
  items[ 126 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikeplein", "7", "9747 AS", "Groningen", new GLatLng( 53.240474, 6.531944 ), 0 ];
  items[ 127 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikeplein", "11", "9747 AS", "Groningen", new GLatLng( 53.240588, 6.532433 ), 0 ];
  items[ 128 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikeplein", "17", "9747 AS", "Groningen", new GLatLng( 53.240759, 6.533167 ), 0 ];
  items[ 129 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Zernikeplein", "23", "9747 AS", "Groningen", new GLatLng( 53.24093, 6.533901 ), 0 ];
  items[ 130 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Laan Corpus den Hoorn", "300", "9728 JT", "Groningen", new GLatLng( 53.191511, 6.562512 ), 0 ];
  items[ 131 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Landleven", "1", "9747 AD", "Groningen", new GLatLng( 53.238491, 6.533703 ), 0 ];
  items[ 132 ] = [ "Stenden Hogeschool", "www.stenden.com", "Phebensstraat", "1", "9711 BL", "Groningen", new GLatLng( 53.213775, 6.568216 ), 0 ];
  items[ 133 ] = [ "Gereformeerde Hogeschool", "www.gereformeerdehogeschool.nl", "Damsport", "3", "9728 PP", "Groningen", new GLatLng( 53.192568, 6.556776 ), 0 ];
  items[ 134 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Bijdorplaan", "15", "2015 CE", "Haarlem", new GLatLng( 52.387911, 4.611035 ), 0 ];
  items[ 135 ] = [ "Christelijke Hogeschool Windesheim", "www.windesheim.nl", "Parkweg", "1", "7772 XP", "Hardenberg", new GLatLng( 52.575894, 6.626197 ), 0 ];
  items[ 136 ] = [ "Fontys Hogescholen", "www.fontys.nl", "M.A. de Ruyterstraat", "3", "7556 CW", "Hengelo", new GLatLng( 52.271659, 6.79772 ), 0 ];
  items[ 137 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Oude Amersfoortseweg", "131", "1212 AA", "Hilversum", new GLatLng(  52.219057, 5.190447 ), 0 ];
  items[ 138 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Saturnusstraat", "2-24", "2132 HB", "Hoofddorp", new GLatLng( 52.295063, 4.699129 ), 0 ];
  items[ 139 ] = [ "Hogeschool Driestar Educatief", "www.driestar-educatief.nl", "Biezelingsestraat", "24", "4421 BS", "Kapelle", new GLatLng( 51.485261, 3.959862 ), 0 ];
  items[ 140 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Agora", "1", "8934 CJ", "Leeuwarden", new GLatLng( 53.194207, 5.801446 ), 0 ];
  items[ 141 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Fonteinland", "11", "8913 CZ", "Leeuwarden", new GLatLng( 53.199943, 5.784962 ), 0 ];
  items[ 142 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Fonteinland", "7-9", "8913 CZ", "Leeuwarden", new GLatLng( 53.199918, 5.784155 ), 0 ];
  items[ 143 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Hempenserweg", "29", "8935 BD", "Leeuwarden", new GLatLng( 53.185168, 5.803152 ), 0 ];
  items[ 144 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Oostersingel", "70b", "8921 GB", "Leeuwarden", new GLatLng( 53.204247, 5.805269 ), 0 ];
  items[ 145 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Rengerslaan", "10", "8917 DD", "Leeuwarden", new GLatLng( 53.212328, 5.797623 ), 0 ];
  items[ 146 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Tesselschadestraat", "12", "8913 HB", "Leeuwarden", new GLatLng( 53.199019, 5.78269 ), 0 ];
  items[ 147 ] = [ "Hanzehogeschool Groningen", "www.hanze.nl", "Achter de Hoven", "23", "8933 AG", "Leeuwarden", new GLatLng( 53.198246, 5.801278 ), 0 ];
  items[ 148 ] = [ "Hogeschool Van Hall Larenstein", "www.vanhall-larenstein.nl", "Agora", "1", "8934 CJ", "Leeuwarden", new GLatLng( 53.194207, 5.801446 ), 0 ];
  items[ 149 ] = [ "Christelijke Hogeschool Windesheim", "www.windesheim.nl", "Het Ravelyn", "1", "8233 BR", "Lelystad", new GLatLng( 52.503565, 5.475292 ), 0 ];
  items[ 150 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Bethlehemweg", "2", "6222 BM", "Maastricht", new GLatLng( 50.867609, 5.709694 ), 0 ];
  items[ 151 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Bonnefantenstraat", "15", "6211 KL", "Maastricht", new GLatLng( 50.844984, 5.686851 ), 0 ];
  items[ 152 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Brusselsestraat", "75", "6211 PC", "Maastricht", new GLatLng( 50.849633, 5.682763 ), 0 ];
  items[ 153 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Brusselseweg", "150", "6217 HB", "Maastricht", new GLatLng( 50.854082, 5.671683 ), 0 ];
  items[ 154 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Franciscus Romanusweg", "90", "6221 AH", "Maastricht", new GLatLng( 50.851251, 5.697903 ), 0 ];
  items[ 155 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Herdenkingsplein", "12", "6211 PW", "Maastricht", new GLatLng( 50.848997, 5.682718 ), 0 ];
  items[ 156 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Lenculenstraat", "31-33", "6211 KP", "Maastricht", new GLatLng( 50.846557, 5.687919 ), 0 ];
  items[ 157 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Universiteitssingel", "60", "6229 ER", "Maastricht", new GLatLng( 50.834003, 5.71601 ), 0 ];
  items[ 158 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Brusselsestraat", "89", "6211 PC", "Maastricht", new GLatLng( 50.849629, 5.681725 ), 0 ];
  items[ 159 ] = [ "Stenden Hogeschool", "www.stenden.com", "Van der Duijn van Maasdamstraat", "1", "7942 AT", "Meppel", new GLatLng( 52.703774, 6.20012 ), 0 ];
  items[ 160 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Berg en Dalseweg", "81", "6522 BC", "Nijmegen", new GLatLng( 51.840375, 5.878046 ), 0 ];
  items[ 161 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Groenewoudseweg", "1", "6524 TM", "Nijmegen", new GLatLng( 51.829858, 5.873746 ), 0 ];
  items[ 162 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Heyendaalseweg", "141", "6525 AJ", "Nijmegen", new GLatLng( 51.827371, 5.869821 ), 0 ];
  items[ 163 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Kapittelweg", "33", "6525 EN", "Nijmegen", new GLatLng( 51.825736, 5.865042 ), 0 ];
  items[ 164 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Laan van Scheut", "2", "6525 EM", "Nijmegen", new GLatLng( 51.826306, 5.862216 ), 0 ];
  items[ 165 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Laan van Scheut", "10", "6525 EM", "Nijmegen", new GLatLng( 51.828343, 5.862154 ), 0 ];
  items[ 166 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Philips van Leydenlaan", "25", "6525 EX", "Nijmegen", new GLatLng( 51.824411, 5.857754 ), 0 ];
  items[ 167 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Sint Annastraat", "312", "6525 HG", "Nijmegen", new GLatLng( 51.824869, 5.856817 ), 0 ];
  items[ 168 ] = [ "Hogeschool van Arhem en Nijmegen", "www.han.nl", "Verlengde Groenestraat", "75", "6525 EJ", "Nijmegen", new GLatLng( 51.829007, 5.863549 ), 0 ];
  items[ 169 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Groenewoudseweg", "1", "6524 TM", "Nijmegen", new GLatLng( 51.829858, 5.873746 ), 0 ];
  items[ 170 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Hazenboslaan", "101", "2343 SZ", "Oegstgeest", new GLatLng( 52.1889, 4.478568 ), 0 ];
  items[ 171 ] = [ "Hogeschool Driestar Educatief", "www.driestar-educatief.nl", "Kastanjelaan", "10", "2982 CM", "Ridderkerk", new GLatLng( 51.876506, 4.5893 ), 0 ];
  items[ 172 ] = [ "Haagse Hogeschool", "www.hhs.nl", "Lange Kleiweg", "80", "2288 GK", "Rijswijk", new GLatLng( 52.034344, 4.329185 ), 0 ];
  items[ 173 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Burg. Geuljanslaan", "16", "6041 NB", "Roermond", new GLatLng( 51.184284, 5.979617 ), 0 ];
  items[ 174 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Blaak", "10", "3011 TA", "Rotterdam", new GLatLng( 51.919016, 4.48799 ), 0 ];
  items[ 175 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "G.J. de Jonghweg", "4-6", "3015 GG", "Rotterdam", new GLatLng( 51.910011, 4.460871 ), 0 ];
  items[ 176 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Kralingse Zoom", "91", "3063 ND", "Rotterdam", new GLatLng( 51.915347, 4.528614 ), 0 ];
  items[ 177 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Lloydstraat", "300", "3024 EA", "Rotterdam", new GLatLng( 51.902064, 4.461093 ), 0 ];
  items[ 178 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Pieter de Hoochweg", "129", "3024 BG", "Rotterdam", new GLatLng( 51.90613, 4.460002 ), 0 ];
  items[ 179 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Wijnhaven", "61", "3011 WJ", "Rotterdam", new GLatLng( 51.918033, 4.488521 ), 0 ];
  items[ 180 ] = [ "Hogeschool Rotterdam", "www.hro.nl", "Wijnhaven", "107", "3011 WN", "Rotterdam", new GLatLng( 51.917129, 4.4841 ), 0 ];
  items[ 181 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Posthumalaan", "90", "3072 AG", "Rotterdam", new GLatLng( 51.905829, 4.494799 ), 0 ];
  items[ 182 ] = [ "Codarts Hogeschool voor de Kunsten", "www.codarts.nl", "Boompjeskade", "10", "3011 XE", "Rotterdam", new GLatLng( 51.915662, 4.489804 ), 0 ];
  items[ 183 ] = [ "Codarts Hogeschool voor de Kunsten", "www.codarts.nl", "Pieter de Hoochweg", "125", "3024 BG", "Rotterdam", new GLatLng( 51.906725, 4.459586 ), 0 ];
  items[ 184 ] = [ "Codarts Hogeschool voor de Kunsten", "www.codarts.nl", "Voorschoterlaan", "73", "3062 KJ", "Rotterdam", new GLatLng( 51.923224, 4.512005 ), 0 ];
  items[ 185 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Stationssingel", "80", "3033 HJ", "Rotterdam", new GLatLng( 51.925798, 4.464182 ), 0 ];
  items[ 186 ] = [ "Hogeschool Leiden", "www.hsleiden.nl", "Stationssingel", "80", "3033 HJ", "Rotterdam", new GLatLng( 51.925798, 4.464182 ), 0 ];
  items[ 187 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Havikstraat", "5", "6135 ED", "Sittard", new GLatLng( 51.00519, 5.846501 ), 0 ];
  items[ 188 ] = [ "Hogeschool Zuyd", "www.hszuyd.nl", "Sportcentrumlaan", "35", "6136 KX", "Sittard", new GLatLng( 51.009653, 5.875316 ), 0 ];
  items[ 189 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Mgr. Claessensstraat", "4", "6131 AJ", "Sittard", new GLatLng( 50.998399, 5.860169 ), 0 ];
  items[ 190 ] = [ "Hogeschool Zeeland", "www.hz.nl", "Vlietstraat", "11a", "4535 HA", "Terneuzen", new GLatLng( 51.309835, 3.859076 ), 0 ];
  items[ 191 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Dellewal", "8", "8881 EG", "Terschelling West", new GLatLng( 53.365679, 5.22198 ), 0 ];
  items[ 192 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Bs. Zwijsenstraat", "5", "5038 VA", "Tilburg", new GLatLng( 51.553573, 5.086085 ), 0 ];
  items[ 193 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Goirleseweg", "46", "5026 PC", "Tilburg", new GLatLng( 51.541187, 5.065151 ), 0 ];
  items[ 194 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Hoevenseweg", "55a", "5017 AD", "Tilburg", new GLatLng( 51.552778, 5.105853 ), 0 ];
  items[ 195 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Meerkoldreef", "6", "5042 PN", "Tilburg", new GLatLng( 51.566854, 5.051074 ), 0 ];
  items[ 196 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Prof. Cobbenhagelaan", "205", "5037 DB", "Tilburg", new GLatLng( 51.56188, 5.046569 ), 0 ];
  items[ 197 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Prof. Gimbrerelaan", "16", "5037 EK", "Tilburg", new GLatLng( 51.55898, 5.058795 ), 0 ];
  items[ 198 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Prof. Goossenslaan", "1", "5022 DM", "Tilburg", new GLatLng( 51.540364, 5.076833 ), 0 ];
  items[ 199 ] = [ "Fontys Hogescholen", "www.fontys.nl", "St. Josephstraat", "106-108", "5017 GK", "Tilburg", new GLatLng( 51.556194, 5.097815 ), 0 ];
  items[ 200 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Zwijsenplein", "1", "5038 TZ", "Tilburg", new GLatLng( 51.553572, 5.084498 ), 0 ];
  items[ 201 ] = [ "Avans Hogeschool", "www.avans.nl", "Professor Cobbenhagenlaan", "13", "5037 DA", "Tilburg", new GLatLng( 51.561001, 5.058428 ), 0 ];
  items[ 202 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Bolognalaan", "101", "3584 CJ", "Utrecht", new GLatLng(  52.082218, 5.176796 ), 0 ];
  items[ 203 ] = [ "Hogeschool Utrecht", "www.hu.nl", "F.C. Dondersstraat", "65", "3572 JE", "Utrecht", new GLatLng(  52.09785, 5.138689 ), 0 ];
  items[ 204 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Heidelberglaan", "7", "3584 CS", "Utrecht", new GLatLng(  52.084853, 5.171404 ), 0 ];
  items[ 205 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Nijenoord", "1", "3552 AS", "Utrecht", new GLatLng(  52.10357, 5.105469 ), 0 ];
  items[ 206 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Oudenoord", "700", "3513 EX", "Utrecht", new GLatLng(  52.102225, 5.107372 ), 0 ];
  items[ 207 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Padualaan", "97", "3584 CH", "Utrecht", new GLatLng(  52.084852, 5.171218 ), 0 ];
  items[ 208 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Padualaan", "99", "3584 CH", "Utrecht", new GLatLng(  52.084852, 5.17106 ), 0 ];
  items[ 209 ] = [ "Hogeschool Utrecht", "www.hu.nl", "Padualaan", "101", "3584 CH", "Utrecht", new GLatLng(  52.084852, 5.169343 ), 0 ];
  items[ 210 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Ina Boudier-Bakkerlaan", "50", "3582 VA", "Utrecht", new GLatLng(  52.080644, 5.134004 ), 0 ];
  items[ 211 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Janskerkhof", "18", "3512 BM", "Utrecht", new GLatLng(  52.093872, 5.121345 ), 0 ];
  items[ 212 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Mariaplaats", "27", "3511 LL", "Utrecht", new GLatLng(  52.089989, 5.117377 ), 0 ];
  items[ 213 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Mariaplaats", "28", "3511 LL", "Utrecht", new GLatLng(  52.089035, 5.117578 ), 0 ];
  items[ 214 ] = [ "Hogeschool voor de Kunsten Utrecht", "www.hku.nl", "Minrebroederstraat", "16", "3512 GT", "Utrecht", new GLatLng(  52.092532, 5.120931 ), 0 ];
  items[ 215 ] = [ "Hogeschool Domstad", "www.domstad.nl", "Weg der Verenigde Naties", "1", "3527 KT", "Utrecht", new GLatLng(  52.084599, 5.097254 ), 0 ];
  items[ 216 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Koningsbergerstraat", "9", "3531 AJ", "Utrecht", new GLatLng( 52.087525, 5.099408 ), 0 ];
  items[ 217 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Wittevrouwenkade", "4", "3512 CR", "Utrecht", new GLatLng( 52.095651, 5.125833 ), 0 ];
  items[ 218 ] = [ "Christelijke Hogeschool Windesheim", "www.windesheim.nl", "Moezeldreef", "400", "3561 GD", "Utrecht", new GLatLng( 52.113525, 5.122461 ), 0 ];
  items[ 219 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Deken van Miertstraat", "14", "5461 JN", "Veghel", new GLatLng( 51.617287, 5.543928 ), 0 ];
  items[ 220 ] = [ "Hogeschool Van Hall Larenstein", "www.vanhall-larenstein.nl", "Larensteinselaan", "26a", "6882 CT", "Velp", new GLatLng( 51.992748, 5.963456 ), 0 ];
  items[ 221 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Hulsterweg", "2", "5912 PL", "Venlo", new GLatLng( 51.353922, 6.156203 ), 0 ];
  items[ 222 ] = [ "Codarts Hogeschool voor de Kunsten", "www.codarts.nl", "Mr. L.A. Kesperweg", "45", "3135 BT", "Vlaardingen", new GLatLng( 51.911108, 4.360333 ), 0 ];
  items[ 223 ] = [ "Hogeschool Zeeland", "www.hz.nl", "Boulevard Bankert", "156", "4382 AC", "Vlissingen", new GLatLng( 51.445817, 3.5645 ), 0 ];
  items[ 224 ] = [ "Hogeschool Zeeland", "www.hz.nl", "Prins Hendrikweg", "10", "4382 NW", "Vlissingen", new GLatLng( 51.448512, 3.589732 ), 0 ];
  items[ 225 ] = [ "Fontys Hogescholen", "www.fontys.nl", "Marijkeweg", "20", "6709 PG", "Wageningen", new GLatLng( 51.96943, 5.65413 ), 0 ];
  items[ 226 ] = [ "Hogeschool Inholland", "www.inholland.nl", "Cypressehout", "95", "1507 EK", "Zaandam", new GLatLng( 52.437207, 4.807188 ), 0 ];
  items[ 227 ] = [ "Haagse Hogeschool", "www.hhs.nl", "Bredewater", "24", "2715 CA", "Zoetermeer", new GLatLng( 52.051057, 4.476229 ), 0 ];
  items[ 228 ] = [ "Christelijke Hogeschool Windesheim", "www.windesheim.nl", "Praubstraat", "17", "8011 PN", "Zwolle", new GLatLng( 52.510637, 6.092572 ), 0 ];
  items[ 229 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Aan de Stadsmuur", "88", "8011 VD", "Zwolle", new GLatLng( 52.514308, 6.094961 ), 0 ];
  items[ 230 ] = [ "ArtEZ Hogeschool voor de Kunsten", "www.artez.nl", "Rhijnvis Feithlaan", "50", "8021 AM", "Zwolle", new GLatLng( 52.514626, 6.104466 ), 0 ];
  items[ 231 ] = [ "Noordelijke Hogeschool Leeuwarden", "www.nhl.nl", "Zwartewaterallee", "14", "8031 DX", "Zwolle", new GLatLng( 52.52166, 6.0894 ), 0 ];

  setupMap();

}}    // End of initialization



function resizeCanvas() {
  // From Google Maps IFrame
  var canvas = document.getElementById("map_canvas");
  var w = 0, h = 0;
  if ( window.self && self.innerWidth && self.innerHeight ) {
    // Non-IE
    w = self.innerWidth;
    h = self.innerHeight;
  }
  else if ( document.documentElement && document.documentElement.clientWidth && document.documentElement.clientHeight ) {
    // IE 6+ in standards compliant mode
    w = document.documentElement.clientWidth;
    h = document.documentElement.clientHeight;
  }
  canvas.style.width = w;
  canvas.style.height = h;
}

