clickMarker = function(x){
	map.panTo(new GLatLng(datas[x].lon, datas[x].lat));
	map.setZoom(10);
	window.setTimeout(function() {
		map.panTo(new GLatLng(datas[x].lon, datas[x].lat));
		window.setTimeout(function() {
			if (x == 6) {
				map.setZoom(14);
				map.setCenter(new GLatLng(datas[x].lon, datas[x].lat),14);
			} else if (x == 11) {
				map.setZoom(16);
				map.setCenter(new GLatLng(datas[x].lon, datas[x].lat),16);
			} else {
				map.setZoom(18);
				map.setCenter(new GLatLng(datas[x].lon, datas[x].lat),18);
			}
		}, 1000);
	}, 1000);
}