

var redIcon = new GIcon();
redIcon.image = "../images/googlemaps/mm_20_3d_red.png";
redIcon.shadow = "";
redIcon.iconSize = new GSize(12, 20);
redIcon.shadowSize = new GSize(22, 20);
redIcon.iconAnchor = new GPoint(6, 20);
redIcon.infoWindowAnchor = new GPoint(5, 1);
redIcon.imageMap = [4,0,0,4,0,7,3,11,4,19,7,19,8,11,11,7,11,4,7,0]; 
redIcon.transparent = "../images/googlemaps/mm_20_transparent.png";

var greenIcon = new GIcon();
greenIcon.image = "../images/googlemaps/mm_20_3d_green.png";
greenIcon.shadow = "";
greenIcon.iconSize = new GSize(12, 20);
greenIcon.shadowSize = new GSize(22, 20);
greenIcon.iconAnchor = new GPoint(6, 20);
greenIcon.infoWindowAnchor = new GPoint(5, 1);
greenIcon.imageMap = [4,0,0,4,0,7,3,11,4,19,7,19,8,11,11,7,11,4,7,0]; 
greenIcon.transparent = "../images/googlemaps/mm_20_transparent.png";

var yellowIcon = new GIcon();
yellowIcon.image = "../images/googlemaps/mm_20_3d_yellow.png";
yellowIcon.shadow = "";
yellowIcon.iconSize = new GSize(12, 20);
yellowIcon.shadowSize = new GSize(22, 20);
yellowIcon.iconAnchor = new GPoint(6, 20);
yellowIcon.infoWindowAnchor = new GPoint(5, 1);
yellowIcon.imageMap = [4,0,0,4,0,7,3,11,4,19,7,19,8,11,11,7,11,4,7,0]; 
yellowIcon.transparent = "../images/googlemaps/mm_20_transparent.png";

var blueIcon = new GIcon();
blueIcon.image = "../images/googlemaps/mm_20_3d_blue.png";
blueIcon.shadow = "";
blueIcon.iconSize = new GSize(12, 20);
blueIcon.shadowSize = new GSize(22, 20);
blueIcon.iconAnchor = new GPoint(6, 20);
blueIcon.infoWindowAnchor = new GPoint(5, 1);
blueIcon.imageMap = [4,0,0,4,0,7,3,11,4,19,7,19,8,11,11,7,11,4,7,0]; 
blueIcon.transparent = "../images/googlemaps/mm_20_transparent.png";

var orangeIcon = new GIcon();
orangeIcon.image = "../images/googlemaps/mm_20_3d_orange.png";
orangeIcon.shadow = "";
orangeIcon.iconSize = new GSize(12, 20);
orangeIcon.shadowSize = new GSize(22, 20);
orangeIcon.iconAnchor = new GPoint(6, 20);
orangeIcon.infoWindowAnchor = new GPoint(5, 1);
orangeIcon.imageMap = [4,0,0,4,0,7,3,11,4,19,7,19,8,11,11,7,11,4,7,0]; 
orangeIcon.transparent = "../images/googlemaps/mm_20_transparent.png";

var purpleIcon = new GIcon();
purpleIcon.image = "../images/googlemaps/mm_20_3d_purple.png";
purpleIcon.shadow = "";
purpleIcon.iconSize = new GSize(12, 20);
purpleIcon.shadowSize = new GSize(22, 20);
purpleIcon.iconAnchor = new GPoint(6, 20);
purpleIcon.infoWindowAnchor = new GPoint(5, 1);
purpleIcon.imageMap = [4,0,0,4,0,7,3,11,4,19,7,19,8,11,11,7,11,4,7,0]; 
purpleIcon.transparent = "../images/googlemaps/mm_20_transparent.png";




	var map;
	var intShowMarkers = 0;
  var batch = [];	
    function load(startLat,startLng,startZoom) {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("mapSmallNav"));
//        map.setCenter(new GLatLng(-0.7,35), 5, G_HYBRID_MAP);
//        map.setCenter(new GLatLng(-1.29,36.85), 7, G_HYBRID_MAP);
        map.setCenter(new GLatLng(startLat,startLng), startZoom, G_HYBRID_MAP);
////		map.addControl(new GSmallZoomControl());
//		map.addControl(new GScaleControl());
////		map.addMapType(G_SATELLITE_3D_MAP);
////		map.addControl(new GMapTypeControl());
//		var omap = new GOverviewMapControl(); 
//		map.addControl(omap); 
//		omap.hide(true); 
		map.setUIToDefault();
		getMarkers();
		window.setTimeout(setupMarkers, 0);
      }
    }



function getMarkers(n) {
	batch = [];
  var marker;

marker = new GMarker(new GLatLng(-0.46, 36.73), {icon:greenIcon, title:'Aberdares'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/aberdares.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.58, 30.70), {icon:greenIcon, title:'Akagera'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/akagera.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.63, 37.23), {icon:greenIcon, title:'Amboseli'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/amboseli.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.29, 39.97), {icon:greenIcon, title:'Arabuko Sokoke Forest'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/arabukosokoke.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.33, 40.03), {icon:greenIcon, title:'Arawale'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/arawale.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.38, 36.69), {icon:redIcon, title:'Arusha'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/arushastad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.23, 36.72), {icon:greenIcon, title:'Arusha Park'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/arushapark.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.1, 38.34), {icon:greenIcon, title:'Bisanadi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/bisanadi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.59, 41.33), {icon:greenIcon, title:'Boni'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/boni.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.53, 37.52), {icon:greenIcon, title:'Buffalo Springs'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/buffalosprings.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.37, 29.36), {icon:redIcon, title:'Bujumbura'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/bujumburastad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.02, 29.72), {icon:greenIcon, title:'Bwindi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/bwindi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.61, 37.89), {icon:greenIcon, title:'Chyulu Hills'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/chyuluhills.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-6.82, 39.26), {icon:redIcon, title:'Dar Es Salaam'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/daressalaamstad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.34, 39.58), {icon:greenIcon, title:'Diani-Chale'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/dianichale.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.85, 41.21), {icon:greenIcon, title:'Dodori'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/dodori.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.69, 29.26), {icon:redIcon, title:'Gisenyi'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/gisenyistad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.68, 29.64), {icon:greenIcon, title:'Gombe Stream'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/gombestream.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.86, 36.32), {icon:greenIcon, title:'Hell\'s Gate'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/hellsgate.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.43,33.2), {icon:redIcon, title:'Jinja'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/jinjastad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.24, 34.93), {icon:greenIcon, title:'Kakamega Forest'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kakamega.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.3,32.58), {icon:redIcon, title:'Kampala'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/kampalastad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-6.75,30.99), {icon:greenIcon, title:'Katavi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/katavi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.71, 35.65), {icon:greenIcon, title:'Kerio Valley'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/keriovalley.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.45, 30.22), {icon:greenIcon, title:'Kibale Forest'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kibale.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.95, 29.45), {icon:greenIcon, title:'Kibira'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kibira.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(3.92, 33.82), {icon:greenIcon, title:'Kidepo Valley'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kidepovalley.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.96, 30.08), {icon:redIcon, title:'Kigali'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/kigalistad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.68, 39.37), {icon:greenIcon, title:'Kisite-Mpunguti'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kisitempunguti.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.14, 34.75), {icon:greenIcon, title:'Kisumu Impala Sanctuary'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kisumu.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.81, 41.43), {icon:greenIcon, title:'Kiunga'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kiunga.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.27, 38.66), {icon:greenIcon, title:'Kora'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kora.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.43, 36.86), {icon:greenIcon, title:'Laikipia Plateau'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/laikipia.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.63, 36.06), {icon:greenIcon, title:'Lake Baringo'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/baringo.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.26, 36.08), {icon:greenIcon, title:'Lake Bogoria'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/bogoria.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.44, 36.24), {icon:greenIcon, title:'Lake Elmenteita'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/elmenteita.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.57, 35.02), {icon:greenIcon, title:'Lake Eyasi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/eyasi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.63, 35.62), {icon:greenIcon, title:'Lake Kamnarok'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kamnarok.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.87, 36.27), {icon:greenIcon, title:'Lake Magadi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/magadi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.61, 35.78), {icon:greenIcon, title:'Lake Manyara'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/manyara.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.59, 30.95), {icon:greenIcon, title:'Lake Mburo'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mburo.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.77, 36.34), {icon:greenIcon, title:'Lake Naivasha'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/naivasha.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.35, 36.09), {icon:greenIcon, title:'Lake Nakuru'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/nakuru.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.32, 35.95), {icon:greenIcon, title:'Lake Natron'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/natron.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(3.41, 36.18), {icon:greenIcon, title:'Lake Turkana'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/turkana.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.27, 40.9), {icon:redIcon, title:'Lamu'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/lamu.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(1.61, 37.4), {icon:greenIcon, title:'Losai'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/losai.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-7.86, 39.79), {icon:redIcon, title:'Mafia'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/mafia.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-6.18, 29.82), {icon:greenIcon, title:'Mahale Mountains'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mahale.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.22, 40.12), {icon:redIcon, title:'Malindi'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/malindistad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.28, 40.14), {icon:greenIcon, title:'Malindi Park'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/malindipark.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(4.15, 40.77), {icon:greenIcon, title:'Malka Mari'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/malkamari.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(1.1, 36.69), {icon:greenIcon, title:'Maralal'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/maralal.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(2.33, 37.84), {icon:greenIcon, title:'Marsabit'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/marsabit.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.44, 35.11), {icon:greenIcon, title:'Masai Mara'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/masaimara.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.1, 38.17), {icon:greenIcon, title:'Meru'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/meru.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.36, 29.65), {icon:greenIcon, title:'Mgahinga'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mgahinga.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-7.17, 37.21), {icon:greenIcon, title:'Mikumi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mikumi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.3, 38.49), {icon:greenIcon, title:'Mkomazi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mkomazi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.06, 39.67), {icon:redIcon, title:'Mombasa'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/mombasastad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.01, 39.7), {icon:greenIcon, title:'Mombasa Park'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mombasapark.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.35, 37.34), {icon:redIcon, title:'Moshi'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/moshistad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(1.15, 34.58), {icon:greenIcon, title:'Mount Elgon'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/elgon.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.15,37.32), {icon:greenIcon, title:'Mount Kenya'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mountkenya.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.05,37.36), {icon:greenIcon, title:'Mount Kilimanjaro'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/kilimanjaro.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.92, 36.45), {icon:greenIcon, title:'Mount Longonot'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/longonot.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(2.21, 31.82), {icon:greenIcon, title:'Murchison Falls'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/murchison.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.8, 37.56), {icon:greenIcon, title:'Mwea'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mwea.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.27, 38.41), {icon:greenIcon, title:'Mwingi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/mwingi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.29,36.85), {icon:redIcon, title:'Nairobi'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/nairobistad.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.375,36.85), {icon:greenIcon, title:'Nairobi Park'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/nairobipark.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.2, 34.51), {icon:greenIcon, title:'Ndere Island'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/ndere.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.18, 35.56), {icon:greenIcon, title:'Ngorongoro'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/ngorongoro.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.54, 29.30), {icon:greenIcon, title:'Nyungwe'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/nyungwe.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.17, 37.2), {icon:greenIcon, title:'Ol Doinyo Sabuk'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/oldoinyosabuk.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-5.17, 39.77), {icon:redIcon, title:'Pemba'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/pemba.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.38, 29.94), {icon:greenIcon, title:'Queen Elizabeth'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/qelizabeth.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.1, 38.87), {icon:greenIcon, title:'Rahole'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/rahole.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-7.46, 34.67), {icon:greenIcon, title:'Ruaha'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/ruaha.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.33, 31.84), {icon:greenIcon, title:'Rubondo Island'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/rubondo.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.14, 30.35), {icon:greenIcon, title:'Ruvubu'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/rububu.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.35, 29.27), {icon:greenIcon, title:'Rusizi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/rusizi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-0.65, 34.28), {icon:greenIcon, title:'Ruma'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/ruma.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.32, 29.93), {icon:greenIcon, title:'Rwenzori Gebergte'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/rwenzori.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-6.09, 38.75), {icon:greenIcon, title:'Saadani'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/saadani.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(1.09, 35.09), {icon:greenIcon, title:'Saiwa Swamp'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/saiwa.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.67, 37.52), {icon:greenIcon, title:'Samburu'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/samburu.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-8.9, 37.28), {icon:greenIcon, title:'Selous'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/selous.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.85, 30.38), {icon:greenIcon, title:'Semliki'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/semliki.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.39, 34.89), {icon:greenIcon, title:'Serengeti'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/serengeti.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(0.67, 37.82), {icon:greenIcon, title:'Shaba'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/shaba.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-4.27, 39.51), {icon:greenIcon, title:'Shimba Hills'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/shimbahills.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(4.07, 36.41), {icon:greenIcon, title:'Sibiloi'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/sibiloi.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.8, 38.64), {icon:greenIcon, title:'South Kitui'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/southkitui.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(1.79, 35.75), {icon:greenIcon, title:'South Turkana'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/southturkana.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.87, 40.13), {icon:greenIcon, title:'Tana River'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/tana.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.95, 36.08), {icon:greenIcon, title:'Tarangire'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/tarangire.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-2.71, 39.05), {icon:greenIcon, title:'Tsavo'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/tsavo.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-7.79, 36.78), {icon:greenIcon, title:'Udzungwa Mountains'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/udzungwa.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.44, 29.52), {icon:greenIcon, title:'Virunga'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/virunga.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-1.44, 29.52), {icon:greenIcon, title:'Parc des Volcans'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/volcans.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-3.35, 39.99), {icon:greenIcon, title:'Watamu'} );
GEvent.addListener(marker, "click", function() {return funHref('../parken/watamu.asp');});
batch.push(marker);
marker = new GMarker(new GLatLng(-6.17, 39.2), {icon:redIcon, title:'Zanzibar'} );
GEvent.addListener(marker, "click", function() {return funHref('../steden/zanzibar.asp');});
batch.push(marker);

  return batch;
}

function setupMarkers() {
//  mgr = new GMarkerManager(map, {borderPadding: 16});
//  mgr.addMarkers(getMarkers(2), 3);
//  mgr.addMarkers(getMarkers(20), 6);
//  mgr.addMarkers(getMarkers(50), 8);
//  mgr.refresh();
if (intShowMarkers == 0) {

for (var i=0;i<batch.length;i++) {
         map.addOverlay(batch[i]);
}
intShowMarkers = 1;
}
};

function clearMarkers() {
//  mgr = new GMarkerManager(map, {borderPadding: 16});
//  mgr.addMarkers(getMarkers(2), 3);
//  mgr.addMarkers(getMarkers(20), 6);
//  mgr.addMarkers(getMarkers(50), 8);
//  mgr.refresh();
//getMarkers();
if (intShowMarkers == 1) {

for (var i=0;i<batch.length;i++) {
         map.removeOverlay(batch[i]);
}
intShowMarkers = 0;
}
};