	var map = null;
	var center = new GLatLng(47,2.1);
	var initZoom = 8;
	var id = '';
	
	//Création de marker pour les fiches
	function createMarker(point, mess, ico) {
		var infoTabs = [
						new GInfoWindowTab("Nom", mess)
						];
		var marker = new GMarker(point, ico);
		GEvent.addListener(marker, "mouseover", function() {
			marker.openInfoWindowTabsHtml(infoTabs);
		});
		return marker;
	}
	
	//Création de marker pour l'OT avec les coordonnées
	function createMarkerOT(point, mess, mess2, ico) {
		var infoTabs = [
						new GInfoWindowTab("Nom", mess),
						new GInfoWindowTab("Coordonnées", mess2)
						];
		var marker = new GMarker(point, ico);
		GEvent.addListener(marker, "mouseover", function() {
			marker.openInfoWindowTabsHtml(infoTabs);
		});
		return marker;
	}
	
	function showAddress(address,mess,mess2) {
	 // alert(address);
	 if(mess == "") mess = address;
	 if(mess2 == "") mess2 = address;
	  var geocoder = new GClientGeocoder();
	  geocoder.getLatLng(
		address + " France",
		function(point) {
		  if (!point) {
			alert("Coordonnées inconnues");
		  } else {
			map.setCenter(point, 16);
			map.addOverlay(createMarker(point, mess, mess2));
		  }
		}
	  );
	}
	
	function showPoint(cat){
		//alert(cat);
		map.clearOverlays();
		administrative();
		var tmpCat = convCatTUrl(cat);
		//alert("http://"+gUrl+"/_includes/google-maps/mnet-gMaps.asp?"+tmpCat);
		map.setCenter(center, initZoom);
		afficheResultat(tmpCat,cat,'','','');
	}
	function afficheResultat(paramsUrl,cat,cLat,cLng,proxim){
		//alert("http://"+gUrl+"/images/scripts/google-maps/mnet-gMaps.php?"+paramsUrl);
		GDownloadUrl("http://"+gUrl+"/images/scripts/google-maps/mnet-gMaps.php?"+paramsUrl,
						function(data, responseCode) {
							//alert(data);
							var xml = GXml.parse(data);
							//var contenu_html = xml.documentElement.getElementsByTagName("contenu");
							var markers = xml.documentElement.getElementsByTagName("marker");
						//	if(markers.length == 0) alert('Nous ne parvenons pas a localiser les prestataires de votre choix !');
							/*if(document.getElementById('nb') != null){
								document.getElementById('nb').innerHTML = 'Nombre de résultat : ' + markers.length;
							}*/
							//alert(markers.length);
							for (var i = 0; i < markers.length; i++) {
								var point = new GLatLng((markers[i].getAttribute("lat")),
								(markers[i].getAttribute("lng")));

								var icontype = markers[i].getAttribute("icontype");
								var Ref = markers[i].getAttribute("label");

								var html = decode(markers[i].getElementsByTagName("infowindow"));
								//if(proxim != '') document.getElementById('proximite').innerHTML += html + '<hr>';
								//alert(icontype);
								//var html2 = decode(markers[i].getElementsByTagName("infowindow2")); 
								map.addOverlay(createMarker(point,html,iconStyle(icontype)));//, icontype,cat,i
							}
							if(markers.length == 1) map.setCenter(point, 12);
							//map.setCenter(point, 12);
							/*if(cLat != '' && cLng != ''){
								var point = new GLatLng((cLat),(cLng));
								map.setCenter(point);
							}*/
						}
					);	
	}
    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"),{mapTypes:[G_NORMAL_MAP,G_HYBRID_MAP,G_SATELLITE_MAP]});
		map.addControl(new GLargeMapControl());
        map.addControl(new GOverviewMapControl());
        map.addControl(new GMapTypeControl());
		
		GEvent.addListener(map, "moveend", 
			function() {
				var tmpcenter = map.getCenter();
				//document.getElementById("message").innerHTML = tmpcenter.toString();
				/*if(tmpcenter.lng()>7.65) map.setCenter(center, initZoom);
				if(tmpcenter.lng()<5.88) map.setCenter(center, initZoom);
				if(tmpcenter.lat()>49.52) map.setCenter(center, initZoom);
				if(tmpcenter.lat()<48.52) map.setCenter(center, initZoom);*/
			});
		
		map.setCenter(center, initZoom);
		
		// poisitionne le CDT/OT etc.
		var point = new GLatLng(46.809155,1.701151);
		map.addOverlay(createMarkerOT(point,"Comité départemental de tourisme de l'’Indre<br>Maison Départementale du tourisme","Centre Colbert - 1 place Eugene Rolland - Bât I<br>BP 141 - 36003 Châteauroux Cedex<br>Tél. : 02 54 07 36 36 - Fax : 02 54 22 31 21 - <a href=\"mailto:tourisme@cyberindre.org\">tourisme@cyberindre.org</a>",iconStyle('Info')));
		var point = new GLatLng(47.077607,2.399916);
		map.addOverlay(createMarkerOT(point,"Maison Départementale du Tourisme du Cher<br/><img src='http://www.berrylecher.com/img-cher-berry/berry-le-cher/berry-cdt18/cg18.jpg'>","Maison Départementale du Tourisme<br/>5, rue de Séraucourt<br/>18000 BOURGES - France<br/>Tél. : 02.48.48.00.10 - Fax : 02.48.48.00.20<br/>tourisme.berry@cdt18.tv",iconStyle('Info')));
		administrative();
      }
    }
	function iconStyle(cat){
		var tmpCat = cat;
		if(tmpCat == '') tmpCat = 'Default';
		if(!isNaN(cat)) tmpCat = 'Default';
		if(id == cat) tmpCat = 'Default';
		if(cat.lastIndexOf(",")>1) tmpCat = 'Default';
		var icon = new GIcon();
		icon.image = "/images/cartographie/gm"+tmpCat+".png";
		icon.shadow = "/images/cartographie/gm-shadow.png";
		icon.iconSize = new GSize(20, 40);
		icon.shadowSize = new GSize(40, 40);
		icon.iconAnchor = new GPoint(10, 40);
		icon.infoWindowAnchor = new GPoint(10, 1);
		icon.infoShadowAnchor = new GPoint(20, 1);
		return icon;
	}
	function decode(a) {
		var b = "";
		if (a.length > 0) {
			if (a[0]) {
				if (a[0].firstChild) {
				b = a[0].firstChild.nodeValue;
			}
		}
	}
	return b;
	}
	function administrative(){
		
		//Cher
		var points = [];
		points.push(new GLatLng(47.27576910000001,1.97595444));
		points.push(new GLatLng(47.26574785,1.99661123));
		points.push(new GLatLng(47.26841457,2.01045756));
		points.push(new GLatLng(47.26700261,2.02025878));
		points.push(new GLatLng(47.26511618,2.02452648));
		points.push(new GLatLng(47.28037966000001,2.05892343));
		points.push(new GLatLng(47.28549463,2.0889708));
		points.push(new GLatLng(47.28538882,2.09420768));
		points.push(new GLatLng(47.28571563,2.10393608));
		points.push(new GLatLng(47.28173504,2.11113135));
		points.push(new GLatLng(47.27917652,2.11426169));
		points.push(new GLatLng(47.28017529,2.12836175));
		points.push(new GLatLng(47.28119089000001,2.13289184));
		points.push(new GLatLng(47.29343782,2.1399174));
		points.push(new GLatLng(47.29787596000001,2.15342941));
		points.push(new GLatLng(47.30021164000001,2.15715042));
		points.push(new GLatLng(47.31636172000001,2.14799548));
		points.push(new GLatLng(47.32173695,2.13501217));
		points.push(new GLatLng(47.33111655,2.12852119));
		points.push(new GLatLng(47.33342951,2.11939416));
		points.push(new GLatLng(47.3454158,2.12670378));
		points.push(new GLatLng(47.36701784000002,2.11466283));
		points.push(new GLatLng(47.36953015,2.1113819));
		points.push(new GLatLng(47.36764917000001,2.10187013));
		points.push(new GLatLng(47.36680368,2.09708096));
		points.push(new GLatLng(47.39161413,2.10274467));
		points.push(new GLatLng(47.41080156,2.116918350000001));
		points.push(new GLatLng(47.4179232,2.11562994));
		points.push(new GLatLng(47.42148402,2.11499222));
		points.push(new GLatLng(47.40632197000001,2.13669234));
		points.push(new GLatLng(47.43570559000001,2.18824479));
		points.push(new GLatLng(47.40608714,2.20483667));
		points.push(new GLatLng(47.40752984,2.22518523));
		points.push(new GLatLng(47.40752577,2.23039252));
		points.push(new GLatLng(47.41298556,2.24038643));
		points.push(new GLatLng(47.41482237,2.24369607));
		points.push(new GLatLng(47.44239531,2.24669853));
		points.push(new GLatLng(47.45096991,2.23864655));
		points.push(new GLatLng(47.45994395000001,2.24499625));
		points.push(new GLatLng(47.46894133,2.23821535));
		points.push(new GLatLng(47.48559480000001,2.24306757));
		points.push(new GLatLng(47.49173295000001,2.24774007));
		points.push(new GLatLng(47.49276366,2.24308144));
		points.push(new GLatLng(47.49635472,2.23499234));
		points.push(new GLatLng(47.49544048000001,2.21942609));
		points.push(new GLatLng(47.48818885,2.20131377));
		points.push(new GLatLng(47.48790374,2.19606087));
		points.push(new GLatLng(47.52042272,2.21449771));
		points.push(new GLatLng(47.54611925,2.19756701));
		points.push(new GLatLng(47.54857015000001,2.19377296));
		points.push(new GLatLng(47.55069884000001,2.13137996));
		points.push(new GLatLng(47.55635249000001,2.12519018));
		points.push(new GLatLng(47.56993073,2.12770246));
		points.push(new GLatLng(47.57964238,2.12146966));
		points.push(new GLatLng(47.58294881,2.119568520000001));
		points.push(new GLatLng(47.58881045,2.13809145));
		points.push(new GLatLng(47.60104565,2.15629095));
		points.push(new GLatLng(47.60745224,2.19724625));
		points.push(new GLatLng(47.62067635,2.23395494));
		points.push(new GLatLng(47.62097771,2.23920916));
		points.push(new GLatLng(47.62867036,2.2848186));
		points.push(new GLatLng(47.62905918,2.28962143));
		points.push(new GLatLng(47.62262083,2.29360501));
		points.push(new GLatLng(47.61953896,2.30306593));
		points.push(new GLatLng(47.61732749000001,2.30719109));
		points.push(new GLatLng(47.60856109,2.32348877));
		points.push(new GLatLng(47.6044873,2.34335745));
		points.push(new GLatLng(47.59105658,2.36015117));
		points.push(new GLatLng(47.58544091000001,2.37268272));
		points.push(new GLatLng(47.59059328,2.37965443));
		points.push(new GLatLng(47.59291567,2.39429548));
		points.push(new GLatLng(47.59857901,2.40033871));
		points.push(new GLatLng(47.60822526000001,2.43345414));
		points.push(new GLatLng(47.60977737000002,2.43807222));
		points.push(new GLatLng(47.60657588,2.44742914));
		points.push(new GLatLng(47.59383996,2.45640449));
		points.push(new GLatLng(47.57178271,2.49030164));
		points.push(new GLatLng(47.56829954,2.491353500000001));
		points.push(new GLatLng(47.56808951,2.50654214));
		points.push(new GLatLng(47.57236885,2.52034004));
		points.push(new GLatLng(47.57467409,2.5449643));
		points.push(new GLatLng(47.57114797,2.56432864));
		points.push(new GLatLng(47.56848819,2.56757339));
		points.push(new GLatLng(47.55962480000002,2.57391326));
		points.push(new GLatLng(47.55813623,2.5929877));
		points.push(new GLatLng(47.55099899,2.6030108));
		points.push(new GLatLng(47.5491547,2.60708154));
		points.push(new GLatLng(47.53856315,2.61673623));
		points.push(new GLatLng(47.52941472000001,2.61332823));
		points.push(new GLatLng(47.52638663,2.61201111));
		points.push(new GLatLng(47.51039874000001,2.6558714));
		points.push(new GLatLng(47.49335243,2.65628702));
		points.push(new GLatLng(47.48575469000001,2.6646014));
		points.push(new GLatLng(47.48468149,2.66938505));
		points.push(new GLatLng(47.48335731000001,2.68206201));
		points.push(new GLatLng(47.48319153,2.6863601));
		points.push(new GLatLng(47.48925566,2.71457321));
		points.push(new GLatLng(47.49575021,2.72539755));
		points.push(new GLatLng(47.49889166000001,2.72741006));
		points.push(new GLatLng(47.50442439,2.7217559));
		points.push(new GLatLng(47.51026759,2.725488760000001));
		points.push(new GLatLng(47.52337933,2.72359385));
		points.push(new GLatLng(47.53622093,2.72715241));
		points.push(new GLatLng(47.53809406,2.73181509));
		points.push(new GLatLng(47.52652528,2.74269851));
		points.push(new GLatLng(47.52495208,2.76255264));
		points.push(new GLatLng(47.51519491,2.78351886));
		points.push(new GLatLng(47.50023828000001,2.79459625));
		points.push(new GLatLng(47.49734835000001,2.79751797));
		points.push(new GLatLng(47.49677844000001,2.80260969));
		points.push(new GLatLng(47.49446105,2.80647944));
		points.push(new GLatLng(47.49807624,2.82626129));
		points.push(new GLatLng(47.51181941000001,2.841215780000001));
		points.push(new GLatLng(47.51828149,2.8705561));
		points.push(new GLatLng(47.52043048,2.87462624));
		points.push(new GLatLng(47.51061996000001,2.88724569));
		points.push(new GLatLng(47.50776744000001,2.889565960000001));
		points.push(new GLatLng(47.50194686,2.891629420000001));
		points.push(new GLatLng(47.49898385000001,2.89239497));
		points.push(new GLatLng(47.48872554,2.89697259));
		points.push(new GLatLng(47.48515361000001,2.89716065));
		points.push(new GLatLng(47.46379686,2.91777469));
		points.push(new GLatLng(47.4606235,2.91918586));
		points.push(new GLatLng(47.4587313,2.91982836));
		points.push(new GLatLng(47.43682162,2.93189217));
		points.push(new GLatLng(47.43344028,2.931549560000001));
		points.push(new GLatLng(47.42316791,2.92089791));
		points.push(new GLatLng(47.41366637,2.91961454));
		points.push(new GLatLng(47.41047228,2.919765190000001));
		points.push(new GLatLng(47.36909028000001,2.89301733));
		points.push(new GLatLng(47.36599869000001,2.89054897));
		points.push(new GLatLng(47.35759218,2.882082220000001));
		points.push(new GLatLng(47.35453559000001,2.879774230000001));
		points.push(new GLatLng(47.35157056,2.87711005));
		points.push(new GLatLng(47.34234604,2.870254150000001));
		points.push(new GLatLng(47.32910675,2.87369444));
		points.push(new GLatLng(47.32028424,2.87902968));
		points.push(new GLatLng(47.31376767,2.894955260000001));
		points.push(new GLatLng(47.31274646,2.89945498));
		points.push(new GLatLng(47.31058594,2.90912721));
		points.push(new GLatLng(47.30831798000001,2.912964890000001));
		points.push(new GLatLng(47.30564843,2.91613663));
		points.push(new GLatLng(47.30084447000001,2.923331370000001));
		points.push(new GLatLng(47.29846196,2.92678301));
		points.push(new GLatLng(47.28516106,2.94156061));
		points.push(new GLatLng(47.26994839000001,2.97354561));
		points.push(new GLatLng(47.26251872,2.981663520000001));
		points.push(new GLatLng(47.2565655,2.98275458));
		points.push(new GLatLng(47.25353021000001,2.98180631));
		points.push(new GLatLng(47.22906795,2.979029000000001));
		points.push(new GLatLng(47.20969475,2.991128450000001));
		points.push(new GLatLng(47.20668364,2.99384934));
		points.push(new GLatLng(47.20381115,2.995912950000001));
		points.push(new GLatLng(47.20085903,2.99773777));
		points.push(new GLatLng(47.1624335,3.015215860000001));
		points.push(new GLatLng(47.15910151,3.01595188));
		points.push(new GLatLng(47.15629306,3.01928071));
		points.push(new GLatLng(47.15299357000001,3.02059707));
		points.push(new GLatLng(47.13978853,3.017184120000001));
		points.push(new GLatLng(47.13111504,3.02495718));
		points.push(new GLatLng(47.12844125,3.02828421));
		points.push(new GLatLng(47.11165577000001,3.029385790000001));
		points.push(new GLatLng(47.10832435,3.03000165));
		points.push(new GLatLng(47.10706339,3.0302489));
		points.push(new GLatLng(47.10351071000001,3.030109480000001));
		points.push(new GLatLng(47.0928875,3.03136999));
		points.push(new GLatLng(47.08016575000001,3.02252662));
		points.push(new GLatLng(47.06678404,3.020051730000001));
		points.push(new GLatLng(47.06365913,3.02225017));
		points.push(new GLatLng(47.05067637,3.05052894));
		points.push(new GLatLng(47.04826191000001,3.05397165));
		points.push(new GLatLng(47.0458665,3.06009793));
		points.push(new GLatLng(47.04617719000001,3.06361755));
		points.push(new GLatLng(47.03328163,3.0726804));
		points.push(new GLatLng(47.03000246000001,3.074780210000001));
		points.push(new GLatLng(47.01586002,3.07477032));
		points.push(new GLatLng(47.01237725,3.07368343));
		points.push(new GLatLng(47.00368393000001,3.06690989));
		points.push(new GLatLng(46.99718051,3.0653226));
		points.push(new GLatLng(46.98025625,3.06275232));
		points.push(new GLatLng(46.96207625000001,3.07512382));
		points.push(new GLatLng(46.96024973,3.07934316));
		points.push(new GLatLng(46.95342808,3.07828996));
		points.push(new GLatLng(46.93842814,3.06603851));
		points.push(new GLatLng(46.93573854,3.0645573));
		points.push(new GLatLng(46.9091623,3.05023021));
		points.push(new GLatLng(46.90028745,3.05808015));
		points.push(new GLatLng(46.89738913,3.061153340000001));
		points.push(new GLatLng(46.89235244000001,3.06234294));
		points.push(new GLatLng(46.88995127,3.06361246));
		points.push(new GLatLng(46.85226280000001,3.069411350000001));
		points.push(new GLatLng(46.84197925,3.0566583));
		points.push(new GLatLng(46.83877222,3.05459645));
		points.push(new GLatLng(46.83392529000001,3.05694417));
		points.push(new GLatLng(46.83159432,3.05849928));
		points.push(new GLatLng(46.82513991,3.05765274));
		points.push(new GLatLng(46.81268289,3.04115817));
		points.push(new GLatLng(46.80962775,3.03907413));
		points.push(new GLatLng(46.79806411,3.03213746));
		points.push(new GLatLng(46.79491561,3.03207072));
		points.push(new GLatLng(46.79337813000001,3.027596990000001));
		points.push(new GLatLng(46.79984158000001,3.01615045));
		points.push(new GLatLng(46.79696079000001,2.99660733));
		points.push(new GLatLng(46.80342556,2.97990239));
		points.push(new GLatLng(46.80387786000001,2.95992679));
		points.push(new GLatLng(46.79269000000001,2.95250127));
		points.push(new GLatLng(46.79299427,2.94438298));
		points.push(new GLatLng(46.79318895,2.93989199));
		points.push(new GLatLng(46.79539505,2.93610446));
		points.push(new GLatLng(46.79019676,2.912953410000001));
		points.push(new GLatLng(46.78447702,2.90892388));
		points.push(new GLatLng(46.78135406,2.91093521));
		points.push(new GLatLng(46.77567349000001,2.89896986));
		points.push(new GLatLng(46.77417565,2.89434484));
		points.push(new GLatLng(46.77003211,2.88042249));
		points.push(new GLatLng(46.76064543,2.87535324));
		points.push(new GLatLng(46.7423694,2.8446387));
		points.push(new GLatLng(46.73923313000001,2.84382406));
		points.push(new GLatLng(46.72662012000001,2.84573507));
		points.push(new GLatLng(46.72732408000001,2.84117422));
		points.push(new GLatLng(46.73533674,2.827496070000001));

		points.push(new GLatLng(46.7354207,2.82257668));
		points.push(new GLatLng(46.73356149,2.79341957));
		points.push(new GLatLng(46.72246554,2.78275538));
		points.push(new GLatLng(46.7189517,2.7747598));
		points.push(new GLatLng(46.72126778,2.77137721));
		points.push(new GLatLng(46.71766317,2.758528720000001));
		points.push(new GLatLng(46.72392033,2.75512498));
		points.push(new GLatLng(46.73055578,2.74380344));
		points.push(new GLatLng(46.74622377,2.73453852));
		points.push(new GLatLng(46.74800057000001,2.73065122));
		points.push(new GLatLng(46.73903576,2.70484521));
		points.push(new GLatLng(46.7356157,2.70525376));
		points.push(new GLatLng(46.7222083,2.70316089));
		points.push(new GLatLng(46.72118332,2.6886199));
		points.push(new GLatLng(46.71083867,2.67617951));
		points.push(new GLatLng(46.7046171,2.67780141));
		points.push(new GLatLng(46.70227942,2.67426887));
		points.push(new GLatLng(46.69735612,2.65619177));
		points.push(new GLatLng(46.68895750000002,2.648089880000001));
		points.push(new GLatLng(46.69031437,2.62822321));
		points.push(new GLatLng(46.68930971000001,2.62348625));
		points.push(new GLatLng(46.67927395,2.62164231));
		points.push(new GLatLng(46.67221260000001,2.63185212));
		points.push(new GLatLng(46.66880445000001,2.63157087));
		points.push(new GLatLng(46.65663147000001,2.62392751));
		points.push(new GLatLng(46.6626474,2.60703665));
		points.push(new GLatLng(46.66930708,2.606155));
		points.push(new GLatLng(46.65927302000001,2.57056311));
		points.push(new GLatLng(46.65248768000001,2.56700624));
		points.push(new GLatLng(46.64809584,2.5890008));
		points.push(new GLatLng(46.64658425,2.59310888));
		points.push(new GLatLng(46.6367255,2.59632897));
		points.push(new GLatLng(46.62637012,2.58460338));
		points.push(new GLatLng(46.61976268,2.58593117));
		points.push(new GLatLng(46.61695059,2.58866016));
		points.push(new GLatLng(46.61045161000001,2.57292466));
		points.push(new GLatLng(46.60939027,2.56839));
		points.push(new GLatLng(46.60700494,2.57766143));
		points.push(new GLatLng(46.59434333,2.58332169));
		points.push(new GLatLng(46.59546224,2.5980228));
		points.push(new GLatLng(46.57295502000001,2.6083514));
		points.push(new GLatLng(46.5632897,2.60568257));
		points.push(new GLatLng(46.55460759,2.61326768));
		points.push(new GLatLng(46.53852322,2.57656254));
		points.push(new GLatLng(46.53341731,2.57013905));
		points.push(new GLatLng(46.52840608,2.55180281));
		points.push(new GLatLng(46.52192223,2.54041168));
		points.push(new GLatLng(46.51970662,2.53666283));
		points.push(new GLatLng(46.52170182,2.53269487));
		points.push(new GLatLng(46.52780728,2.52941895));
		points.push(new GLatLng(46.52992759000001,2.52028842));
		points.push(new GLatLng(46.52345816,2.50977407));
		points.push(new GLatLng(46.52215776,2.50024219));
		points.push(new GLatLng(46.53115987,2.49654094));
		points.push(new GLatLng(46.53269856,2.48293547));
		points.push(new GLatLng(46.53078745,2.47879795));
		points.push(new GLatLng(46.52064627,2.44784303));
		points.push(new GLatLng(46.52631148,2.43092232));
		points.push(new GLatLng(46.52034137,2.41379785));
		points.push(new GLatLng(46.51829719,2.38410731));
		points.push(new GLatLng(46.51843755,2.36831151));
		points.push(new GLatLng(46.51724213000001,2.36369727));
		points.push(new GLatLng(46.49956543,2.33432262));
		points.push(new GLatLng(46.48774381000001,2.32497089));
		points.push(new GLatLng(46.48182427,2.32963487));
		points.push(new GLatLng(46.47886436,2.33082042));
		points.push(new GLatLng(46.46891378,2.3214204));
		points.push(new GLatLng(46.46850732000002,2.31700641));
		points.push(new GLatLng(46.47077378,2.31311084));
		points.push(new GLatLng(46.47543230000001,2.30547882));
		points.push(new GLatLng(46.45135788000001,2.28467895));
		points.push(new GLatLng(46.42721521,2.27844397));
		points.push(new GLatLng(46.42040675000001,2.28105322));
		points.push(new GLatLng(46.421277,2.27629079));
		points.push(new GLatLng(46.42313636,2.25696872));
		points.push(new GLatLng(46.42565312000001,2.25366029));
		points.push(new GLatLng(46.4262523,2.24888439));
		points.push(new GLatLng(46.42359165000001,2.22065657));
		points.push(new GLatLng(46.42829745,2.1978376));
		points.push(new GLatLng(46.42598149,2.19409643));
		points.push(new GLatLng(46.4231517,2.18490704));
		points.push(new GLatLng(46.42320958000001,2.18049514));
		points.push(new GLatLng(46.42407306,2.16779456));
		points.push(new GLatLng(46.43458912000001,2.15526943));
		points.push(new GLatLng(46.45769691,2.15141669));
		points.push(new GLatLng(46.47064018,2.19319744));
		points.push(new GLatLng(46.47687227000001,2.19820778));
		points.push(new GLatLng(46.48016753,2.20017896));
		points.push(new GLatLng(46.48061737,2.20017782));
		points.push(new GLatLng(46.48309505,2.20314115));
		points.push(new GLatLng(46.48949262000001,2.2038027));
		points.push(new GLatLng(46.49421758,2.19762925));
		points.push(new GLatLng(46.50625179000002,2.194704320000001));
		points.push(new GLatLng(46.50540906,2.18997801));
		points.push(new GLatLng(46.50993437,2.18308541));
		points.push(new GLatLng(46.51329877,2.18276309));
		points.push(new GLatLng(46.52698125,2.18147277));
		points.push(new GLatLng(46.55405766000001,2.16016339));
		points.push(new GLatLng(46.55734733,2.15870495));
		points.push(new GLatLng(46.56586372,2.17367792));
		points.push(new GLatLng(46.58564843,2.16798099));
		points.push(new GLatLng(46.58898501000001,2.16714842));
		points.push(new GLatLng(46.60020789000001,2.17600203));
		points.push(new GLatLng(46.60029548,2.18075294));
		points.push(new GLatLng(46.60256792,2.18462318));
		points.push(new GLatLng(46.61286112,2.18527307));
		points.push(new GLatLng(46.61604875,2.18736622));
		points.push(new GLatLng(46.62579310000001,2.18127997));
		points.push(new GLatLng(46.64214209,2.18944933));
		points.push(new GLatLng(46.64290317,2.1799897));
		points.push(new GLatLng(46.64884438000001,2.17594731));
		points.push(new GLatLng(46.64732857,2.16675607));
		points.push(new GLatLng(46.65931575000001,2.15170445));
		points.push(new GLatLng(46.66559338,2.13972532));
		points.push(new GLatLng(46.67231868,2.13728281));
		points.push(new GLatLng(46.68881889000001,2.15404809));
		points.push(new GLatLng(46.69215981,2.15545017));
		points.push(new GLatLng(46.69553695,2.14117197));
		points.push(new GLatLng(46.70643606,2.12876038));
		points.push(new GLatLng(46.7095871,2.11980215));
		points.push(new GLatLng(46.71115162,2.11009091));
		points.push(new GLatLng(46.70849686,2.10085535));
		points.push(new GLatLng(46.71187912000001,2.09207721));
		points.push(new GLatLng(46.71245312000001,2.08710429));
		points.push(new GLatLng(46.72195365,2.09125967));
		points.push(new GLatLng(46.72829455,2.09002712));
		points.push(new GLatLng(46.73443914,2.07424456));
		points.push(new GLatLng(46.74249832,2.06576418));
		points.push(new GLatLng(46.75218900000001,2.07012662));
		points.push(new GLatLng(46.75596754000001,2.09431192));
		points.push(new GLatLng(46.77853926,2.11610651));
		points.push(new GLatLng(46.7902504,2.10578923));
		points.push(new GLatLng(46.79354895,2.10421625));
		points.push(new GLatLng(46.79614285,2.10079904));
		points.push(new GLatLng(46.80985161,2.07158396));
		points.push(new GLatLng(46.83233083,2.0480084));
		points.push(new GLatLng(46.8361974,2.05081808));
		points.push(new GLatLng(46.83546841,2.06929471));
		points.push(new GLatLng(46.83765377,2.07282359));
		points.push(new GLatLng(46.83801608,2.07782993));
		points.push(new GLatLng(46.85283843,2.09241988));
		points.push(new GLatLng(46.86856864000001,2.09027585));
		points.push(new GLatLng(46.88018215000001,2.12100326));
		points.push(new GLatLng(46.87986799000002,2.12621331));
		points.push(new GLatLng(46.88985171,2.1400844));
		points.push(new GLatLng(46.90845993000001,2.15314363));
		points.push(new GLatLng(46.91167455000001,2.15497058));
		points.push(new GLatLng(46.91432368,2.15198138));
		points.push(new GLatLng(46.9173147,2.14364699));
		points.push(new GLatLng(46.91316929,2.11032864));
		points.push(new GLatLng(46.91498704,2.1060672));
		points.push(new GLatLng(46.93402756,2.07069546));
		points.push(new GLatLng(46.95442109,2.07021344));
		points.push(new GLatLng(46.95665059000001,2.08137064));
		points.push(new GLatLng(46.95863688000001,2.0845804));
		points.push(new GLatLng(46.96355162,2.08998448));
		points.push(new GLatLng(46.97251454,2.08705183));
		points.push(new GLatLng(46.97799548,2.09183717));
		points.push(new GLatLng(46.98056438,2.09459903));
		points.push(new GLatLng(46.98948011000001,2.09482176));
		points.push(new GLatLng(46.99534901,2.105169520000001));
		points.push(new GLatLng(46.99719163,2.10885645));
		points.push(new GLatLng(47.00021824,2.10630569));
		points.push(new GLatLng(47.01241574000001,2.09688854));
		points.push(new GLatLng(47.01491205,2.094259860000001));
		points.push(new GLatLng(47.0186383,2.08304873));
		points.push(new GLatLng(47.02175619,2.08135014));
		points.push(new GLatLng(47.02794307,2.06462369));
		points.push(new GLatLng(47.03822568,2.05347973));
		points.push(new GLatLng(47.04235230000001,2.03141476));
		points.push(new GLatLng(47.04553151,2.02938304));
		points.push(new GLatLng(47.05784424000002,2.03850088));
		points.push(new GLatLng(47.0642752,2.04150502));
		points.push(new GLatLng(47.07013436,2.05329796));
		points.push(new GLatLng(47.0801167,2.05562751));
		points.push(new GLatLng(47.09606688,2.04847109));
		points.push(new GLatLng(47.10151323,2.05360624));
		points.push(new GLatLng(47.10434877000002,2.05070586));
		points.push(new GLatLng(47.10490131000001,2.03120325));
		points.push(new GLatLng(47.09647673,2.02623222));
		points.push(new GLatLng(47.09520747,2.00657216));
		points.push(new GLatLng(47.10161555,2.00446426));
		points.push(new GLatLng(47.11127397,2.00959612));
		points.push(new GLatLng(47.11391876,2.00023699));
		points.push(new GLatLng(47.11732728,1.99991247));
		points.push(new GLatLng(47.12699736,1.99666189));
		points.push(new GLatLng(47.12565276000001,1.99222857));
		points.push(new GLatLng(47.12103851,1.97487455));
		points.push(new GLatLng(47.12418555,1.96313606));
		points.push(new GLatLng(47.11667537000001,1.94730846));
		points.push(new GLatLng(47.11505158,1.94360406));
		points.push(new GLatLng(47.11092824,1.93720393));
		points.push(new GLatLng(47.10403113,1.92025918));
		points.push(new GLatLng(47.10810925,1.90639235));
		points.push(new GLatLng(47.10376712,1.89273809));
		points.push(new GLatLng(47.10476402,1.88790759));
		points.push(new GLatLng(47.10051598,1.88306859));
		points.push(new GLatLng(47.10228932,1.87881126));
		points.push(new GLatLng(47.11098292,1.84667714));
		points.push(new GLatLng(47.11347966,1.84359708));
		points.push(new GLatLng(47.12130326,1.82844758));
		points.push(new GLatLng(47.12201852,1.809475));
		points.push(new GLatLng(47.12016377,1.80542081));
		points.push(new GLatLng(47.12082162000001,1.79582088));
		points.push(new GLatLng(47.12894642000001,1.78100055));
		points.push(new GLatLng(47.13010978,1.77787756));
		points.push(new GLatLng(47.13075883000001,1.77445796));
		points.push(new GLatLng(47.15620503,1.80982426));
		points.push(new GLatLng(47.16327247,1.81104735));
		points.push(new GLatLng(47.16656907,1.81391828));
		points.push(new GLatLng(47.17397122,1.82358084));
		points.push(new GLatLng(47.17678533000001,1.83753876));
		points.push(new GLatLng(47.17757836,1.84224144));
		points.push(new GLatLng(47.19836514,1.83744306));
		points.push(new GLatLng(47.21576125,1.83889146));
		points.push(new GLatLng(47.21930643,1.83908293));
		points.push(new GLatLng(47.22053553,1.85309421));
		points.push(new GLatLng(47.20707908,1.87534026));
		points.push(new GLatLng(47.21788422,1.90585245));
		points.push(new GLatLng(47.22088902,1.90832382));
		points.push(new GLatLng(47.23418468,1.91563983));
		points.push(new GLatLng(47.24075709000001,1.91224619));
		points.push(new GLatLng(47.24378759,1.90952735));
		points.push(new GLatLng(47.24675963,1.89610817));
		points.push(new GLatLng(47.25187718000002,1.89350291));
		points.push(new GLatLng(47.25479944,1.89550019));
		points.push(new GLatLng(47.26385991,1.92268729));
		points.push(new GLatLng(47.27359431000001,1.92300837));
		points.push(new GLatLng(47.29006659000001,1.94136394));
		points.push(new GLatLng(47.27765383,1.97143436));
		points.push(new GLatLng(47.27590362,1.97582136));
		points.push(new GLatLng(47.27576910000001,1.97595444));
		map.addOverlay(new GPolyline(points, "#FF0B07"));
		
		
		
		
		
		//Indre
		var points = [];
		points.push(new GLatLng(46.4352325,1.99078224));
		points.push(new GLatLng(46.4357865,1.98660146));
		points.push(new GLatLng(46.44028595000001,1.98111942));
		points.push(new GLatLng(46.43950525999999,1.97606204));
		points.push(new GLatLng(46.43191312,1.92613209));
		points.push(new GLatLng(46.43996848000001,1.91955098));
		points.push(new GLatLng(46.44309681,1.91156172));
		points.push(new GLatLng(46.43856281,1.89984562));
		points.push(new GLatLng(46.43823951,1.89534541));
		points.push(new GLatLng(46.44099856,1.88768342));
		points.push(new GLatLng(46.43265252000001,1.8839658));
		points.push(new GLatLng(46.43237052,1.87893101));
		points.push(new GLatLng(46.43347269000001,1.85374326));
		points.push(new GLatLng(46.42681177,1.84257384));
		points.push(new GLatLng(46.43142775000001,1.81845769));
		points.push(new GLatLng(46.43850182,1.81700025));
		points.push(new GLatLng(46.44828459,1.80211865));
		points.push(new GLatLng(46.4549062,1.79825216));
		points.push(new GLatLng(46.45384984,1.79369471));
		points.push(new GLatLng(46.45507439,1.78455551));
		points.push(new GLatLng(46.45002223000001,1.74759995));
		points.push(new GLatLng(46.44774987,1.75009772));
		points.push(new GLatLng(46.44550389,1.75266007));
		points.push(new GLatLng(46.43991853000001,1.75830336));
		points.push(new GLatLng(46.43720489,1.75528704));
		points.push(new GLatLng(46.42748282000001,1.75974999));
		points.push(new GLatLng(46.41231938000001,1.74877634));
		points.push(new GLatLng(46.40559058000002,1.75055299));
		points.push(new GLatLng(46.4043159,1.74591061));
		points.push(new GLatLng(46.39240971,1.72832983));
		points.push(new GLatLng(46.3889612,1.72784834));
		points.push(new GLatLng(46.39335041,1.70941241));
		points.push(new GLatLng(46.41818124,1.68361302));
		points.push(new GLatLng(46.41642912,1.67934244));
		points.push(new GLatLng(46.40441201,1.66164352));
		points.push(new GLatLng(46.39511633,1.65521806));
		points.push(new GLatLng(46.39298764,1.65134374));
		points.push(new GLatLng(46.38560062,1.64109932));
		points.push(new GLatLng(46.38943023,1.62734692));
		points.push(new GLatLng(46.40337559,1.61443078));
		points.push(new GLatLng(46.41940783,1.62124415));
		points.push(new GLatLng(46.42317143,1.60906865));
		points.push(new GLatLng(46.42114786,1.60499626));
		points.push(new GLatLng(46.40760366,1.59204296));
		points.push(new GLatLng(46.40909983,1.57749328));
		points.push(new GLatLng(46.40638870000001,1.57437054));
		points.push(new GLatLng(46.40531314,1.56963828));
		points.push(new GLatLng(46.39589344,1.55520654));
		points.push(new GLatLng(46.39592146,1.54625923));
		points.push(new GLatLng(46.41641728,1.54364537));
		points.push(new GLatLng(46.42429841,1.53472183));
		points.push(new GLatLng(46.42665311,1.52535773));
		points.push(new GLatLng(46.42538947000001,1.52102953));
		points.push(new GLatLng(46.41921270000002,1.51044249));
		points.push(new GLatLng(46.41278044000001,1.50933054));
		points.push(new GLatLng(46.40550598,1.50011558));
		points.push(new GLatLng(46.3973927,1.49800368));
		points.push(new GLatLng(46.39464082000001,1.49696812));
		points.push(new GLatLng(46.39725219,1.49361028));
		points.push(new GLatLng(46.39397239,1.47964169));
		points.push(new GLatLng(46.37628788,1.4637112));
		points.push(new GLatLng(46.37193198,1.44516706));
		points.push(new GLatLng(46.36311368,1.4370965));
		points.push(new GLatLng(46.35613657,1.43659075));
		points.push(new GLatLng(46.34721916,1.41519493));
		points.push(new GLatLng(46.34951092,1.41155693));
		points.push(new GLatLng(46.36264628000001,1.40701863));
		points.push(new GLatLng(46.3686479,1.39515284));
		points.push(new GLatLng(46.37189975,1.39657839));
		points.push(new GLatLng(46.37106955000001,1.39195226));
		points.push(new GLatLng(46.38333868,1.37661956));
		points.push(new GLatLng(46.38586294000001,1.37390824));
		points.push(new GLatLng(46.39563644,1.36255123));
		points.push(new GLatLng(46.39772385,1.35940562));
		points.push(new GLatLng(46.4016002,1.34469121));
		points.push(new GLatLng(46.39970999000001,1.34050022));
		points.push(new GLatLng(46.39371269,1.31264998));
		points.push(new GLatLng(46.38657002,1.32183423));
		points.push(new GLatLng(46.38104752000001,1.31105539));
		points.push(new GLatLng(46.37438448,1.31053111));
		points.push(new GLatLng(46.37220695,1.28302853));
		points.push(new GLatLng(46.37649366,1.27956413));
		points.push(new GLatLng(46.37635538,1.26959575));
		points.push(new GLatLng(46.3787151,1.26021496));
		points.push(new GLatLng(46.37676062,1.25065949));
		points.push(new GLatLng(46.36620296,1.23817156));
		points.push(new GLatLng(46.36665236,1.23348325));
		points.push(new GLatLng(46.36935765000001,1.21572567));
		points.push(new GLatLng(46.38799997000001,1.21296039));
		points.push(new GLatLng(46.38914334,1.20839861));
		points.push(new GLatLng(46.38074327,1.19350443));
		points.push(new GLatLng(46.37740794,1.19289853));
		points.push(new GLatLng(46.37693349,1.18868338));
		points.push(new GLatLng(46.378598,1.18078273));
		points.push(new GLatLng(46.38395301000001,1.17728831));
		points.push(new GLatLng(46.40001784,1.19540104));
		points.push(new GLatLng(46.40976056000001,1.19341428));
		points.push(new GLatLng(46.42992315,1.21127325));
		points.push(new GLatLng(46.43308116000001,1.21306749));
		points.push(new GLatLng(46.43380275,1.20337016));
		points.push(new GLatLng(46.42961266,1.19548192));
		points.push(new GLatLng(46.42930851,1.18584572));
		points.push(new GLatLng(46.43951746000001,1.18548621));
		points.push(new GLatLng(46.44635385,1.16853625));
		points.push(new GLatLng(46.44677283000001,1.16378768));
		points.push(new GLatLng(46.45030065,1.15092904));
		points.push(new GLatLng(46.47088898,1.1355158));
		points.push(new GLatLng(46.47284455,1.15296307));
		points.push(new GLatLng(46.48715694000001,1.13975419));
		points.push(new GLatLng(46.49678003,1.13683179));
		points.push(new GLatLng(46.50007353,1.14533271));
		points.push(new GLatLng(46.50221002,1.14915585));
		points.push(new GLatLng(46.5051829,1.14691455));
		points.push(new GLatLng(46.52232205,1.12372656));
		points.push(new GLatLng(46.52422863,1.11942117));
		points.push(new GLatLng(46.53343121000001,1.10415552));
		points.push(new GLatLng(46.53758814,1.09009607));
		points.push(new GLatLng(46.53618283,1.08012758));
		points.push(new GLatLng(46.53925991000001,1.06551707));
		points.push(new GLatLng(46.53714567,1.0204119));
		points.push(new GLatLng(46.54971179,1.02472369));
		points.push(new GLatLng(46.56776389,1.01477558));
		points.push(new GLatLng(46.56741842,1.00990459));
		points.push(new GLatLng(46.56603105,0.99059095));
		points.push(new GLatLng(46.57327284000001,0.98202112));
		points.push(new GLatLng(46.57254342,0.9624414));
		points.push(new GLatLng(46.57761672000001,0.95560542));
		points.push(new GLatLng(46.58088155000001,0.941376));
		points.push(new GLatLng(46.58349248,0.93936419));
		points.push(new GLatLng(46.58872934000001,0.93569202));
		points.push(new GLatLng(46.59442458,0.9377650400000002));
		points.push(new GLatLng(46.59456670000001,0.9332958300000001));
		points.push(new GLatLng(46.59712742,0.91628541));
		points.push(new GLatLng(46.60528136,0.9084859800000001));
		points.push(new GLatLng(46.61817686000001,0.90490709));
		points.push(new GLatLng(46.62865656999999,0.89401072));
		points.push(new GLatLng(46.63182506,0.8955211800000001));
		points.push(new GLatLng(46.64672564,0.9076388800000002));
		points.push(new GLatLng(46.65067679,0.9156373100000003));
		points.push(new GLatLng(46.66643699,0.9073415500000001));
		points.push(new GLatLng(46.67259408,0.91184559));
		points.push(new GLatLng(46.67813355,0.9072546100000001));
		points.push(new GLatLng(46.67766523,0.90227292));
		points.push(new GLatLng(46.69048999,0.91816062));
		points.push(new GLatLng(46.6936057,0.9271414000000001));
		points.push(new GLatLng(46.70021678,0.92482406));
		points.push(new GLatLng(46.70272416,0.9215933200000001));
		points.push(new GLatLng(46.71741401,0.91041508));
		points.push(new GLatLng(46.72707855000001,0.91118058));
		points.push(new GLatLng(46.7304024,0.90283546));
		points.push(new GLatLng(46.73579868,0.8983340600000001));
		points.push(new GLatLng(46.7387494,0.87981407));
		points.push(new GLatLng(46.74821948,0.86747592));
		points.push(new GLatLng(46.75456487,0.8845063600000001));
		points.push(new GLatLng(46.75713172,0.9118665700000002));
		points.push(new GLatLng(46.75644392,0.91661111));
		points.push(new GLatLng(46.7555581,0.93004089));
		points.push(new GLatLng(46.73862602000001,0.9435176400000002));
		points.push(new GLatLng(46.73661972,0.94723392));
		points.push(new GLatLng(46.74000797,0.96103354));
		points.push(new GLatLng(46.75603931,0.9795957400000001));
		points.push(new GLatLng(46.76255388,0.9825613900000002));
		points.push(new GLatLng(46.75848232000001,1.00678038));
		points.push(new GLatLng(46.75781055000001,1.01169354));
		points.push(new GLatLng(46.76619967000001,1.01118645));
		points.push(new GLatLng(46.76876279,1.00952589));
		points.push(new GLatLng(46.78104145,0.9999635000000001));
		points.push(new GLatLng(46.79089106,1.0043309));
		points.push(new GLatLng(46.80165466,0.98534054));
		points.push(new GLatLng(46.81444675000001,1.00892597));
		points.push(new GLatLng(46.83528245,1.01020907));
		points.push(new GLatLng(46.84425247000001,1.01793513));
		points.push(new GLatLng(46.84562033,1.02264888));
		points.push(new GLatLng(46.84849942,1.02028364));
		points.push(new GLatLng(46.85445233,1.01692481));
		points.push(new GLatLng(46.87966487000001,1.02555819));
		points.push(new GLatLng(46.87975105,1.02522672));
		points.push(new GLatLng(46.90735497,1.03383904));
		points.push(new GLatLng(46.93869869,1.03588999));
		points.push(new GLatLng(46.94206331,1.03743767));
		points.push(new GLatLng(46.94353675000001,1.04122514));
		points.push(new GLatLng(46.94511697,1.04491829));
		points.push(new GLatLng(46.94968173,1.05803977));
		points.push(new GLatLng(46.95882358000001,1.06293441));
		points.push(new GLatLng(46.96864234,1.05992852));
		points.push(new GLatLng(46.97200722000001,1.05991566));
		points.push(new GLatLng(46.9802831,1.05169841));
		points.push(new GLatLng(46.99644065,1.05637507));
		points.push(new GLatLng(47.00050787,1.07020562));
		points.push(new GLatLng(47.01583979,1.07761895));
		points.push(new GLatLng(47.02817327,1.10568445));
		points.push(new GLatLng(47.02923895,1.11026547));
		points.push(new GLatLng(47.02676445,1.11277064));
		points.push(new GLatLng(47.02443701,1.11557352));
		points.push(new GLatLng(47.03936016,1.16099434));
		points.push(new GLatLng(47.04122198,1.17598366));
		points.push(new GLatLng(47.04103930000001,1.18106781));
		points.push(new GLatLng(47.03406686,1.19007542));
		points.push(new GLatLng(47.03171225,1.19304562));
		points.push(new GLatLng(47.02768832000001,1.20280228));
		points.push(new GLatLng(47.0282939,1.20673688));
		points.push(new GLatLng(47.02491193,1.22063612));
		points.push(new GLatLng(47.01704672,1.229745));
		points.push(new GLatLng(47.01414657,1.23222516));
		points.push(new GLatLng(47.01994778,1.24426187));
		points.push(new GLatLng(47.0208294,1.24899326));
		points.push(new GLatLng(47.04080404,1.27609488));
		points.push(new GLatLng(47.05040679,1.27253541));
		points.push(new GLatLng(47.06285813000001,1.28915451));
		points.push(new GLatLng(47.06896593000001,1.29299877));
		points.push(new GLatLng(47.07225681,1.29377624));
		points.push(new GLatLng(47.07387977000001,1.31218245));
		points.push(new GLatLng(47.08387564,1.31628544));
		points.push(new GLatLng(47.09361953000001,1.31127852));
		points.push(new GLatLng(47.10294134,1.31749198));
		points.push(new GLatLng(47.10465044000001,1.32664213));
		points.push(new GLatLng(47.10046198000001,1.33947341));
		points.push(new GLatLng(47.10620034000001,1.3518332));
		points.push(new GLatLng(47.10847324000001,1.35566558));
		points.push(new GLatLng(47.12111614000001,1.36446279));
		points.push(new GLatLng(47.13158451,1.36403564));
		points.push(new GLatLng(47.13508173,1.36374806));
		points.push(new GLatLng(47.1382676,1.36185757));
		points.push(new GLatLng(47.15371302,1.350894));
		points.push(new GLatLng(47.17355812,1.34353633));
		points.push(new GLatLng(47.18622236,1.32666077));
		points.push(new GLatLng(47.19421846,1.33677829));
		points.push(new GLatLng(47.19389849,1.35185671));
		points.push(new GLatLng(47.20687202000001,1.38842363));
		points.push(new GLatLng(47.20868952,1.39283913));
		points.push(new GLatLng(47.21554674000001,1.40637195));
		points.push(new GLatLng(47.21741688000001,1.40958761));
		points.push(new GLatLng(47.22618603,1.41830886));
		points.push(new GLatLng(47.22915981,1.42120426));
		points.push(new GLatLng(47.23898989,1.45314765));
		points.push(new GLatLng(47.2390307,1.4679941));
		points.push(new GLatLng(47.23891547,1.47301413));
		points.push(new GLatLng(47.23747651000001,1.48760795));
		points.push(new GLatLng(47.23312141,1.49483563));
		points.push(new GLatLng(47.23452479,1.50350441));
		points.push(new GLatLng(47.22250986000001,1.5266418));
		points.push(new GLatLng(47.21925337,1.52806433));
		points.push(new GLatLng(47.22359807,1.53444416));
		points.push(new GLatLng(47.23026113,1.53271848));
		points.push(new GLatLng(47.23978394,1.52700237));
		points.push(new GLatLng(47.25249448,1.52675575));
		points.push(new GLatLng(47.25534358000002,1.52395106));
		points.push(new GLatLng(47.26142489,1.56307814));
		points.push(new GLatLng(47.25788088,1.58781381));
		points.push(new GLatLng(47.25769782,1.59289038));
		points.push(new GLatLng(47.27441376,1.59313362));
		points.push(new GLatLng(47.27501489,1.6027214));
		points.push(new GLatLng(47.27542393,1.60764607));
		points.push(new GLatLng(47.27714314,1.61209042));
		points.push(new GLatLng(47.27263035,1.61979115));
		points.push(new GLatLng(47.27443591000001,1.62957443));
		points.push(new GLatLng(47.27148851000001,1.6494652));
		points.push(new GLatLng(47.26184592,1.65113525));
		points.push(new GLatLng(47.25889093,1.66569506));
		points.push(new GLatLng(47.26408039,1.70042504));
		points.push(new GLatLng(47.27395414,1.71294334));
		points.push(new GLatLng(47.27682129,1.71581654));
		points.push(new GLatLng(47.24987008,1.74668753));
		points.push(new GLatLng(47.24731442000001,1.75004617));
		points.push(new GLatLng(47.23373469,1.77246282));
		points.push(new GLatLng(47.23138656,1.77610626));
		points.push(new GLatLng(47.23139832,1.78601124));
		points.push(new GLatLng(47.23480760999999,1.79357053));
		points.push(new GLatLng(47.2378228,1.79582496));
		points.push(new GLatLng(47.23219204000001,1.81151897));
		points.push(new GLatLng(47.22999315000001,1.81461766));
		points.push(new GLatLng(47.22055502000001,1.83451591));
		points.push(new GLatLng(47.21930643,1.83908293));
		points.push(new GLatLng(47.21576125,1.83889146));
		points.push(new GLatLng(47.19836514,1.83744306));
		points.push(new GLatLng(47.17757836,1.84224144));
		points.push(new GLatLng(47.17678533000001,1.83753876));
		points.push(new GLatLng(47.17397122,1.82358084));
		points.push(new GLatLng(47.16656907,1.81391828));
		points.push(new GLatLng(47.16327247,1.81104735));
		points.push(new GLatLng(47.15620503,1.80982426));
		points.push(new GLatLng(47.13075883000001,1.77445796));
		points.push(new GLatLng(47.13010978,1.77787756));
		points.push(new GLatLng(47.12894642000001,1.78100055));
		points.push(new GLatLng(47.12082162000001,1.79582088));
		points.push(new GLatLng(47.12016377,1.80542081));
		points.push(new GLatLng(47.12201852,1.809475));
		points.push(new GLatLng(47.12130326,1.82844758));
		points.push(new GLatLng(47.11347966,1.84359708));
		points.push(new GLatLng(47.11098292,1.84667714));
		points.push(new GLatLng(47.10228932,1.87881126));
		points.push(new GLatLng(47.10051598,1.88306859));
		points.push(new GLatLng(47.10476402,1.88790759));
		points.push(new GLatLng(47.10376712,1.89273809));
		points.push(new GLatLng(47.10810925,1.90639235));
		points.push(new GLatLng(47.10403113,1.92025918));
		points.push(new GLatLng(47.11092824,1.93720393));
		points.push(new GLatLng(47.11505158,1.94360406));
		points.push(new GLatLng(47.11667537000001,1.94730846));
		points.push(new GLatLng(47.12418555,1.96313606));
		points.push(new GLatLng(47.12103851,1.97487455));
		points.push(new GLatLng(47.12565276000001,1.99222857));
		points.push(new GLatLng(47.12699736,1.99666189));
		points.push(new GLatLng(47.11732728,1.99991247));
		points.push(new GLatLng(47.11391875999999,2.00023699));
		points.push(new GLatLng(47.11127397,2.00959612));
		points.push(new GLatLng(47.10161555,2.00446426));
		points.push(new GLatLng(47.09520747,2.00657216));
		points.push(new GLatLng(47.09647673,2.02623222));
		points.push(new GLatLng(47.10490131000001,2.03120325));
		points.push(new GLatLng(47.10434877000002,2.05070586));
		points.push(new GLatLng(47.10151323,2.05360624));
		points.push(new GLatLng(47.09606688,2.04847109));
		points.push(new GLatLng(47.0801167,2.05562751));
		points.push(new GLatLng(47.07013436,2.05329796));
		points.push(new GLatLng(47.0642752,2.04150502));
		points.push(new GLatLng(47.05784424000002,2.03850088));
		points.push(new GLatLng(47.04553151,2.02938304));
		points.push(new GLatLng(47.04235230000001,2.03141476));
		points.push(new GLatLng(47.03822568,2.05347973));
		points.push(new GLatLng(47.02794307,2.06462369));
		points.push(new GLatLng(47.02175619,2.08135014));
		points.push(new GLatLng(47.0186383,2.08304873));
		points.push(new GLatLng(47.01491205,2.094259860000001));
		points.push(new GLatLng(47.01241574000001,2.09688854));
		points.push(new GLatLng(47.00021824,2.10630569));
		points.push(new GLatLng(46.99719163,2.10885645));
		points.push(new GLatLng(46.99534901,2.105169520000001));
		points.push(new GLatLng(46.98948011000001,2.09482176));
		points.push(new GLatLng(46.98056438,2.09459903));
		points.push(new GLatLng(46.97799548,2.09183717));
		points.push(new GLatLng(46.97251454,2.08705183));
		points.push(new GLatLng(46.96355162,2.08998448));
		points.push(new GLatLng(46.95863688000001,2.0845804));
		points.push(new GLatLng(46.95665059000001,2.08137064));
		points.push(new GLatLng(46.95442109,2.07021344));
		points.push(new GLatLng(46.93402755999999,2.07069546));
		points.push(new GLatLng(46.91498704,2.1060672));
		points.push(new GLatLng(46.91316929,2.11032864));
		points.push(new GLatLng(46.9173147,2.14364699));
		points.push(new GLatLng(46.91432368,2.15198138));
		points.push(new GLatLng(46.91167455000001,2.15497058));
		points.push(new GLatLng(46.90845993000001,2.15314363));
		points.push(new GLatLng(46.88985171,2.1400844));
		points.push(new GLatLng(46.87986799000002,2.12621331));
		points.push(new GLatLng(46.88018215000001,2.12100326));
		points.push(new GLatLng(46.86856864000001,2.09027585));
		points.push(new GLatLng(46.85283843,2.09241988));
		points.push(new GLatLng(46.83801608,2.07782993));
		points.push(new GLatLng(46.83765377,2.07282359));
		points.push(new GLatLng(46.83546841,2.06929471));
		points.push(new GLatLng(46.8361974,2.05081808));
		points.push(new GLatLng(46.83233083,2.0480084));
		points.push(new GLatLng(46.80985161,2.07158396));
		points.push(new GLatLng(46.79614285,2.10079904));
		points.push(new GLatLng(46.79354895,2.10421625));
		points.push(new GLatLng(46.7902504,2.10578923));
		points.push(new GLatLng(46.77853926,2.11610651));
		points.push(new GLatLng(46.75596754000001,2.09431192));
		points.push(new GLatLng(46.75218900000001,2.07012662));
		points.push(new GLatLng(46.74249832,2.06576418));
		points.push(new GLatLng(46.73443914,2.07424456));
		points.push(new GLatLng(46.72829455,2.09002712));
		points.push(new GLatLng(46.72195365,2.09125967));
		points.push(new GLatLng(46.71245312000001,2.08710429));
		points.push(new GLatLng(46.71187912000001,2.09207721));
		points.push(new GLatLng(46.70849686,2.10085535));
		points.push(new GLatLng(46.71115162,2.11009091));
		points.push(new GLatLng(46.7095871,2.11980215));
		points.push(new GLatLng(46.70643606,2.12876038));
		points.push(new GLatLng(46.69553695,2.14117197));
		points.push(new GLatLng(46.69215981,2.15545017));
		points.push(new GLatLng(46.68881889000001,2.15404809));
		points.push(new GLatLng(46.67231868,2.13728281));
		points.push(new GLatLng(46.66559337999999,2.13972532));
		points.push(new GLatLng(46.65931575000001,2.15170445));
		points.push(new GLatLng(46.64732857,2.16675607));
		points.push(new GLatLng(46.64884438000001,2.17594731));
		points.push(new GLatLng(46.64290317,2.1799897));
		points.push(new GLatLng(46.64214209,2.18944933));
		points.push(new GLatLng(46.62579310000001,2.18127997));
		points.push(new GLatLng(46.61604875,2.18736622));
		points.push(new GLatLng(46.61286112,2.18527307));
		points.push(new GLatLng(46.60256792,2.18462318));
		points.push(new GLatLng(46.60029548,2.18075294));
		points.push(new GLatLng(46.60020789000001,2.17600203));
		points.push(new GLatLng(46.58898501000001,2.16714842));
		points.push(new GLatLng(46.58564843,2.16798099));
		points.push(new GLatLng(46.56586372,2.17367792));
		points.push(new GLatLng(46.55734733,2.15870495));
		points.push(new GLatLng(46.55405766000001,2.16016339));
		points.push(new GLatLng(46.52698125,2.18147277));
		points.push(new GLatLng(46.51329877,2.18276309));
		points.push(new GLatLng(46.50993437,2.18308541));
		points.push(new GLatLng(46.50540906,2.18997801));
		points.push(new GLatLng(46.50625179000002,2.194704320000001));
		points.push(new GLatLng(46.49421757999999,2.19762925));
		points.push(new GLatLng(46.48949262000001,2.2038027));
		points.push(new GLatLng(46.48309505,2.20314115));
		points.push(new GLatLng(46.48061737,2.20017782));
		points.push(new GLatLng(46.48016753,2.20017896));
		points.push(new GLatLng(46.47687227000001,2.19820778));
		points.push(new GLatLng(46.47064018,2.19319744));
		points.push(new GLatLng(46.45769691,2.15141669));
		points.push(new GLatLng(46.43458912000001,2.15526943));
		points.push(new GLatLng(46.42407306,2.16779456));
		points.push(new GLatLng(46.42389990000001,2.14921639));
		points.push(new GLatLng(46.42110528000001,2.14061368));
		points.push(new GLatLng(46.42153685,2.11598467));
		points.push(new GLatLng(46.41076935,2.10343753));
		points.push(new GLatLng(46.41007213000001,2.08862554));
		points.push(new GLatLng(46.41034233,2.08875437));
		points.push(new GLatLng(46.41128635000001,2.0843796));
		points.push(new GLatLng(46.42011224,2.07246223));
		points.push(new GLatLng(46.4213505,2.06346518));
		points.push(new GLatLng(46.42087958,2.05849787));
		points.push(new GLatLng(46.4245932,2.02942633));
		points.push(new GLatLng(46.42722006000001,2.02635383));
		points.push(new GLatLng(46.43092094000001,1.99308684));
		points.push(new GLatLng(46.4352325,1.99078224));
		map.addOverlay(new GPolyline(points));//, "#EF6329"*/
		//map.addOverlay(new GPolyline(points));
		return true;
	}
	function convCatTUrl(cat){
		var tmp="";
		//alert(cat)
		if(cat.indexOf("id_offre") >= 0)
		{
			tmp = cat;
		}else{
			tmp = "flux="+cat;
		}
		return tmp;
	}
	window.onload = function() {
		load();chargeID();
		GEvent.addListener(map, "moveend", function() {
		  /*var center = map.getCenter();
		  document.getElementById("message").innerHTML = center.toString();*/
		});
	};
