1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
|
// center on a country
function focusCountry(latitude, longitude, zoom) {
map.setZoom(zoom);
map.panTo(new google.maps.LatLng(latitude, longitude));
};
var w1_route = [
new google.maps.LatLng(33.6340591334, -117.905273421),
new google.maps.LatLng(39.8720671401, -75.2433013811),
new google.maps.LatLng(48.8591810972, 2.36274719205),
new google.maps.LatLng(25.2571166566, 55.3573608321),
new google.maps.LatLng(9.96462383888, 76.241512288),
new google.maps.LatLng(9.97983994818, 76.3058853043),
new google.maps.LatLng(12.8800862022, 74.8512267962),
new google.maps.LatLng(15.2835227519, 73.9537811176),
new google.maps.LatLng(15.2785549849, 73.9194488422),
new google.maps.LatLng(15.2878280549, 73.9520645039),
new google.maps.LatLng(15.3815292342, 73.8308715718),
new google.maps.LatLng(19.0916444473, 72.8647613424),
new google.maps.LatLng(23.0317150151, 72.5839233297),
new google.maps.LatLng(24.5671083494, 73.6962890522),
new google.maps.LatLng(26.2934150009, 72.9931640523),
new google.maps.LatLng(27.0395565987, 70.8837890526),
new google.maps.LatLng(28.6538383041, 77.235259999),
new google.maps.LatLng(27.1837989989, 78.0139160048),
new google.maps.LatLng(28.6351574683, 77.321777333),
new google.maps.LatLng(27.693864327, 85.3122711063),
new google.maps.LatLng(28.2634144723, 83.9657592657),
new google.maps.LatLng(27.7163574808, 85.3318405033),
new google.maps.LatLng(13.7480558966, 100.491943345),
new google.maps.LatLng(18.7828168844, 98.688297258),
new google.maps.LatLng(18.6228217836, 98.1161498887),
new google.maps.LatLng(18.7867173121, 98.6627197128),
new google.maps.LatLng(19.1503574528, 98.4429931504),
new google.maps.LatLng(20.2441597546, 100.449371324),
new google.maps.LatLng(20.1610319993, 100.581893907),
new google.maps.LatLng(19.8190360667, 100.583267198),
new google.maps.LatLng(19.9049273981, 100.80917357),
new google.maps.LatLng(19.841643557, 100.996627794),
new google.maps.LatLng(19.892014381, 101.130523668),
new google.maps.LatLng(19.817744113, 101.252059922),
new google.maps.LatLng(19.8306631778, 101.485519395),
new google.maps.LatLng(19.8377682157, 101.622161851),
new google.maps.LatLng(19.9333323258, 101.717605577),
new google.maps.LatLng(19.9843192647, 101.908493028),
new google.maps.LatLng(20.0585112659, 101.994323716),
new google.maps.LatLng(20.0514161545, 102.056121812),
new google.maps.LatLng(20.0920474486, 102.144012437),
new google.maps.LatLng(20.0546412449, 102.216110215),
new google.maps.LatLng(19.9559235088, 102.242202745),
new google.maps.LatLng(19.8868488792, 102.130966172),
new google.maps.LatLng(20.3085692942, 102.425537095),
new google.maps.LatLng(20.3858253792, 102.301940904),
new google.maps.LatLng(20.5839386078, 102.400817857),
new google.maps.LatLng(20.630213815, 101.969604478),
new google.maps.LatLng(20.8998713443, 101.892700181),
new google.maps.LatLng(21.0588708637, 101.640014634),
new google.maps.LatLng(20.9306586408, 101.398315416),
new google.maps.LatLng(20.6713355245, 101.260986314),
new google.maps.LatLng(20.655916187, 101.063232408),
new google.maps.LatLng(20.3343256141, 100.68695067),
new google.maps.LatLng(20.1874572588, 100.55236815),
new google.maps.LatLng(20.2286974872, 100.464477525),
new google.maps.LatLng(20.1436275548, 100.599060045),
new google.maps.LatLng(19.8442270653, 100.582580552),
new google.maps.LatLng(19.8855574775, 100.810546861),
new google.maps.LatLng(19.8700598353, 100.983581529),
new google.maps.LatLng(19.8984710212, 101.10717772),
new google.maps.LatLng(19.8390600067, 101.22802733),
new google.maps.LatLng(19.8338927799, 101.453247056),
new google.maps.LatLng(19.8648936179, 101.585082994),
new google.maps.LatLng(19.9526963949, 101.703186021),
new google.maps.LatLng(20.0017414002, 101.881713853),
new google.maps.LatLng(20.0559312625, 101.969604478),
new google.maps.LatLng(20.0843089663, 102.065734849),
new google.maps.LatLng(20.1049440695, 102.12066649),
new google.maps.LatLng(20.0791497658, 102.216796861),
new google.maps.LatLng(19.9862551527, 102.236022935),
new google.maps.LatLng(19.9088010977, 102.145385728),
new google.maps.LatLng(19.7279276408, 102.200317369),
new google.maps.LatLng(19.5546138828, 102.233276353),
new google.maps.LatLng(19.4989587001, 102.422790513),
new google.maps.LatLng(19.3979539457, 102.433776841),
new google.maps.LatLng(19.3370617985, 102.369232163),
new google.maps.LatLng(19.2541083139, 102.275848374),
new google.maps.LatLng(19.1516547421, 102.212676988),
new google.maps.LatLng(19.1321943319, 102.332153306),
new google.maps.LatLng(19.0763951195, 102.426910386),
new google.maps.LatLng(18.9283714639, 102.453002915),
new google.maps.LatLng(18.8543103594, 102.531280503),
new google.maps.LatLng(18.7815167218, 102.516174302),
new google.maps.LatLng(18.6605578234, 102.329406724),
new google.maps.LatLng(18.5590418612, 102.387084947),
new google.maps.LatLng(18.3636492713, 102.424163804),
new google.maps.LatLng(18.1210551472, 102.506561265),
new google.maps.LatLng(17.9669765887, 102.597198472),
new google.maps.LatLng(18.3858049288, 103.211059556),
new google.maps.LatLng(18.3440977996, 103.925170884),
new google.maps.LatLng(18.0936442681, 104.304199204),
new google.maps.LatLng(18.2032620171, 104.985351548),
new google.maps.LatLng(17.8898868162, 105.413818345),
new google.maps.LatLng(17.7329908472, 105.227050767),
new google.maps.LatLng(17.5131057154, 104.754638657),
new google.maps.LatLng(17.2195113315, 105.018310532),
new google.maps.LatLng(16.6888169539, 104.968872056),
new google.maps.LatLng(16.5730227169, 104.754638657),
new google.maps.LatLng(16.0141359999, 105.463256821),
new google.maps.LatLng(16.0088559356, 106.188354477),
new google.maps.LatLng(15.7129507237, 106.81457518),
new google.maps.LatLng(15.3848394606, 107.089233384),
new google.maps.LatLng(14.8333015135, 106.798095688),
new google.maps.LatLng(15.4060236625, 107.017822251),
new google.maps.LatLng(15.702374674, 106.710205063),
new google.maps.LatLng(15.1198559395, 105.814819321),
new google.maps.LatLng(14.019355705, 105.897216782),
new google.maps.LatLng(13.758060281, 106.100463852),
new google.maps.LatLng(13.5071554577, 105.963134751),
new google.maps.LatLng(13.7527246625, 106.995849594),
new google.maps.LatLng(13.421680541, 106.08398436),
new google.maps.LatLng(12.5331153556, 106.034545884),
new google.maps.LatLng(12.0608090567, 106.419067368),
new google.maps.LatLng(12.447304849, 107.182617173),
new google.maps.LatLng(12.1145227695, 106.46301268),
new google.maps.LatLng(11.5553803207, 104.935913071),
new google.maps.LatLng(12.7635890668, 103.969116196),
new google.maps.LatLng(13.1008799677, 103.222045884),
new google.maps.LatLng(13.1383284513, 103.710937486),
new google.maps.LatLng(13.3575543677, 103.864746079),
new google.maps.LatLng(12.7421584486, 104.875488267),
new google.maps.LatLng(11.6307157364, 104.985351548),
new google.maps.LatLng(10.6066196404, 104.183349595),
new google.maps.LatLng(10.320323624, 104.29870604),
new google.maps.LatLng(10.6012202844, 104.144897446),
new google.maps.LatLng(10.6822005986, 103.908691392),
new google.maps.LatLng(10.7847446584, 104.024047837),
new google.maps.LatLng(10.6983940764, 103.820800767),
new google.maps.LatLng(10.6174180665, 103.5406494),
new google.maps.LatLng(11.6091934063, 102.991332993),
new google.maps.LatLng(11.9318523253, 102.788085923),
new google.maps.LatLng(12.2165490146, 102.529907212),
new google.maps.LatLng(12.8010882779, 101.645507798),
new google.maps.LatLng(13.6673382578, 100.508422838),
new google.maps.LatLng(8.02115545545, 98.9044189315),
new google.maps.LatLng(7.74365134419, 98.7615966659),
new google.maps.LatLng(7.52587276796, 99.0802001815),
new google.maps.LatLng(7.32092487789, 99.1365051132),
new google.maps.LatLng(7.45847521581, 99.6391296248),
new google.maps.LatLng(7.56263066107, 99.616470323),
new google.maps.LatLng(9.06412676503, 99.1571044784),
new google.maps.LatLng(10.5364205975, 99.124145494),
new google.maps.LatLng(11.8834776976, 99.7943115095),
new google.maps.LatLng(13.2239035109, 99.8052978377),
new google.maps.LatLng(13.6780132549, 100.415039049),
new google.maps.LatLng(51.4882243211, -0.0988769531112),
new google.maps.LatLng(47.5172006927, 19.0502929661),
new google.maps.LatLng(44.9103591696, 15.6198120095),
new google.maps.LatLng(44.2963328751, 15.8477783181),
new google.maps.LatLng(44.1211132327, 15.6170654275),
new google.maps.LatLng(44.0224465695, 15.5758666971),
new google.maps.LatLng(43.695679693, 16.0263061501),
new google.maps.LatLng(43.5704418011, 16.6909790016),
new google.maps.LatLng(43.2951993872, 17.0205688453),
new google.maps.LatLng(43.0769131212, 17.4188232398),
new google.maps.LatLng(42.6662807008, 18.064270017),
new google.maps.LatLng(42.8699254822, 17.6934814428),
new google.maps.LatLng(43.2592059246, 17.0672607398),
new google.maps.LatLng(43.4509250027, 16.6168212867),
new google.maps.LatLng(43.5027446733, 16.4218139626),
new google.maps.LatLng(43.5425757176, 16.01257324),
new google.maps.LatLng(43.5206718975, 16.2542724587),
new google.maps.LatLng(43.5346116125, 16.0372924782),
new google.maps.LatLng(43.6380629226, 15.930175779),
new google.maps.LatLng(43.8325455167, 15.6472778299),
new google.maps.LatLng(44.103365373, 15.2737426737),
new google.maps.LatLng(45.3405631339, 14.4305419902),
new google.maps.LatLng(46.0560792712, 14.506072996),
new google.maps.LatLng(46.3687265468, 14.1133117656),
new google.maps.LatLng(46.2843258376, 13.8935852031),
new google.maps.LatLng(46.2121502356, 14.0020751934),
new google.maps.LatLng(46.2264029426, 14.1806030254),
new google.maps.LatLng(46.3052010508, 14.2080688457),
new google.maps.LatLng(46.3990410423, 14.1380310039),
new google.maps.LatLng(47.8002416277, 13.0435180646),
new google.maps.LatLng(47.8205318624, 13.0902099591),
new google.maps.LatLng(48.8195241368, 14.3151855449),
new google.maps.LatLng(50.0906310996, 14.415435789),
new google.maps.LatLng(48.2118624121, 16.376495359),
new google.maps.LatLng(46.9352608755, 7.47070312396),
new google.maps.LatLng(47.3164829292, 4.97680663993),
new google.maps.LatLng(48.8357974573, 2.54882812465),
new google.maps.LatLng(40.6483455119, -73.7807464497),
new google.maps.LatLng(40.7175989451, -73.9984130756),
new google.maps.LatLng(40.7758618059, -73.8720703022),
new google.maps.LatLng(33.640919208, -84.4244384648),
new google.maps.LatLng(33.9456384488, -118.421630843)
];
var nic_route = [
new google.maps.LatLng(12.140536467, -86.1697196841),
new google.maps.LatLng(12.1521159412, -86.2722015261),
new google.maps.LatLng(12.026560945, -86.177444446),
new google.maps.LatLng(12.0178303361, -86.1437988161),
new google.maps.LatLng(12.0003682688, -86.1307525515),
new google.maps.LatLng(12.0003682688, -86.1115264773),
new google.maps.LatLng(11.9741730472, -86.0703277468),
new google.maps.LatLng(11.9788749408, -86.0524749636),
new google.maps.LatLng(11.977531551, -86.0291290163),
new google.maps.LatLng(11.961410352, -86.0009765505),
new google.maps.LatLng(11.9607386145, -85.9913635134),
new google.maps.LatLng(11.9258059681, -85.9652709841),
new google.maps.LatLng(11.8928845495, -85.994796741),
new google.maps.LatLng(11.8545831929, -86.0215759158),
new google.maps.LatLng(11.7786365588, -86.0531616091),
new google.maps.LatLng(11.7551090001, -86.044921863),
new google.maps.LatLng(11.7470419455, -86.0256957888),
new google.maps.LatLng(11.7147713667, -86.0112762331),
new google.maps.LatLng(11.6569438261, -85.9707641482),
new google.maps.LatLng(11.5984316183, -85.9158325076),
new google.maps.LatLng(11.5836334823, -85.9020995974),
new google.maps.LatLng(11.5257787151, -85.8993530154),
new google.maps.LatLng(11.4423392523, -85.8238220095),
new google.maps.LatLng(11.3070343889, -85.8554077029),
new google.maps.LatLng(11.3009744617, -85.8876800418),
new google.maps.LatLng(11.2740399031, -85.8876800418),
new google.maps.LatLng(11.262591951, -85.8732604861),
new google.maps.LatLng(11.2888542231, -85.8904266238),
new google.maps.LatLng(11.3003011285, -85.8698272586),
new google.maps.LatLng(11.3440644904, -85.8519744754),
new google.maps.LatLng(11.4362822027, -85.8300018191),
new google.maps.LatLng(11.5304882703, -85.8924865603),
new google.maps.LatLng(11.5836334823, -85.8938598513),
new google.maps.LatLng(11.6051577845, -85.9103393435),
new google.maps.LatLng(11.6582887897, -85.9803771853),
new google.maps.LatLng(11.7127543302, -86.0195159792),
new google.maps.LatLng(11.743680603, -86.0325622439),
new google.maps.LatLng(11.7524200082, -86.0517883181),
new google.maps.LatLng(11.7766199898, -86.0593414187),
new google.maps.LatLng(11.857271183, -86.0291290163),
new google.maps.LatLng(11.9103535541, -86.0771942019),
new google.maps.LatLng(11.9325241345, -86.090927112),
new google.maps.LatLng(11.9674559143, -86.0923004031),
new google.maps.LatLng(11.9929801305, -86.1039733767),
new google.maps.LatLng(12.0003682688, -86.1383056521),
new google.maps.LatLng(12.0178303361, -86.1520385622),
new google.maps.LatLng(12.0359628223, -86.1856841921),
new google.maps.LatLng(12.1454032639, -86.2728881716),
new google.maps.LatLng(12.1420468617, -86.1767578005),
new google.maps.LatLng(12.0122896105, -83.7633705023),
new google.maps.LatLng(12.1752733775, -83.0580139045),
new google.maps.LatLng(12.2823082653, -82.9728698615),
new google.maps.LatLng(12.2779471901, -82.9797363166),
new google.maps.LatLng(12.1759445775, -83.0552673224),
new google.maps.LatLng(12.0151439379, -83.7676620367),
new google.maps.LatLng(12.1400330001, -86.1812209963),
new google.maps.LatLng(12.1551365908, -86.2701415896),
new google.maps.LatLng(12.1383547705, -86.308593738),
new google.maps.LatLng(12.1302991211, -86.3103103518),
new google.maps.LatLng(12.1410399328, -86.3329696535),
new google.maps.LatLng(12.1735953703, -86.3463592409),
new google.maps.LatLng(12.2353390434, -86.4239501833),
new google.maps.LatLng(12.2796245352, -86.5159606813),
new google.maps.LatLng(12.2675474115, -86.5461730837),
new google.maps.LatLng(12.2769407778, -86.5708923219),
new google.maps.LatLng(12.3198776097, -86.6107177614),
new google.maps.LatLng(12.337318692, -86.664276111),
new google.maps.LatLng(12.4258477813, -86.8702697633),
new google.maps.LatLng(12.4204832376, -86.9444274781),
new google.maps.LatLng(12.3748801543, -87.0323181031),
new google.maps.LatLng(12.3614659657, -87.018585193),
new google.maps.LatLng(12.3762215353, -87.021331775),
new google.maps.LatLng(12.3963414227, -86.9705200074),
new google.maps.LatLng(12.4325533053, -86.8881225465),
new google.maps.LatLng(12.3426849453, -86.6862487672),
new google.maps.LatLng(12.3091440596, -86.6065978883),
new google.maps.LatLng(12.2809664037, -86.5873718141),
new google.maps.LatLng(12.2648635311, -86.5338134645),
new google.maps.LatLng(12.2729150904, -86.5008544801),
new google.maps.LatLng(12.2407073777, -86.4418029665),
new google.maps.LatLng(12.1641983336, -86.3580322145),
new google.maps.LatLng(12.1319774015, -86.3250732302),
new google.maps.LatLng(12.1548009647, -86.2866210817),
new google.maps.LatLng(12.1507734193, -86.1877441286)
];
function showRoute(route, zoom, latitude, longitude) {
var routePath = new google.maps.Polyline({
path: eval(route),
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 2
});
map.setZoom(zoom);
map.panTo(new google.maps.LatLng(latitude, longitude));
routePath.setMap(map);
return false;
};
var map;
function initialize() {
//custom marker
var image = new google.maps.MarkerImage('http://media.luxagraf.net/img/marker-entry.png',
new google.maps.Size(15, 26),
new google.maps.Point(0, 0),
new google.maps.Point(7, 26)
);
//custom marker shadow
var shadow = new google.maps.MarkerImage('http://media.luxagraf.net/img/shadow.png',
new google.maps.Size(37, 34),
new google.maps.Point(0,0),
new google.maps.Point(8, 34)
);
//check for a permalink
var location = window.location.hash;
//find a centerpoint
var pts = new Array();
pts[0] = ["#austria", 47.683,14.912,8];pts[1] = ["#cambodia", 12.714,104.564,7];pts[2] = ["#croatia", 45.723,16.693,7];pts[3] = ["#czech-republic", 49.9017112173,14.9963378906,7];pts[4] = ["#france", 46.565,2.55,6];pts[5] = ["#hungary", 47.07,19.134,7];pts[6] = ["#india", 21.0,78.5,5];pts[7] = ["#laos", 19.905,102.471,6];pts[8] = ["#nepal", 28.253,83.939,6];pts[9] = ["#nicaragua", 12.84,-85.034,7];pts[10] = ["#slovenia", 46.124,14.827,9];pts[11] = ["#thailand", 15.7,100.844,5];pts[12] = ["#united-kingdom", 53.0,-1.6,6];pts[13] = ["#united-states", 39.622,-98.606,4];
pts[pts.length] = ["#central-america", 14.3708339734,-87.8686523438,6];pts[pts.length] = ["#southeast-asia", 12.2970682929,102.744140625,5];pts[pts.length] = ["#central-asia", 20.0146454453,79.892578125,5];pts[pts.length] = ["#europe", 47.0102256557,4.74609375,5];pts[pts.length] = ["#north-america", 39.0277188402,-98.349609375,4];
if (location.length>1) {
for (i=0;i<pts.length;i++) {
if (location == pts[i][0]) {
centerCoord = new google.maps.LatLng(pts[i][1],pts[i][2]);
zoom = pts[i][3];
break;
} else {
centerCoord = new google.maps.LatLng(19.311143,2.460938);
zoom = 2;
}
}
} else {
centerCoord = new google.maps.LatLng(19.311143,2.460938);
zoom = 2;
}
//set up map options
var mapOptions = {
zoom: zoom,
center: centerCoord,
mapTypeId: google.maps.MapTypeId.TERRAIN,
disableDefaultUI: true,
navigationControl: true,
navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}
};
//create map
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
//loop through and set up markers/info windows
var marker_comanche_national = new google.maps.Marker({
position: new google.maps.LatLng(37.14748996, -103.009572015),
map: map,
shadow: shadow,
icon: image
});
var c_comanche_national = '<div class="infowin"><h4>Comanche National Grasslands<\/h4><span class="date blok">July 16, 2010 (Comanche National Grasslands, Colorado)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/comanchegrasslands.jpg" height="100" alt="Comanche National Grasslands" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>To say the Comanche National Grasslands is off the grid would be an understatement. With the exception of Highway 50 in Nevada, I’ve never driven through such isolation and vast openness anywhere in the world. And it’s easy to get lost. There are no signs, no road names even, just dirt paths crisscrossing a wide, perfectly flat expanses of grass. <a href="/2010/jul/16/comanche-national-grasslands/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_comanche_national, 'click', function() {
openWin(c_comanche_national,marker_comanche_national);
});
var marker_why_national = new google.maps.Marker({
position: new google.maps.LatLng(35.1885403096, -101.919479356),
map: map,
shadow: shadow,
icon: image
});
var c_why_national = '<div class="infowin"><h4>Why National Parks Are Better Than State Parks<\/h4><span class="date blok">July 15, 2010 (Amarillo, Texas)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/paloduratn.jpg" height="100" alt="Why National Parks Are Better Than State Parks" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>There are many reasons, but here\u0027s the one I currently consider most important: National Parks never close. Take Palo Dura State park outside of Amarillo, Texas. Were it a National Park, I would be there right now. But it\u0027s not, it\u0027s a state park and so I\u0027m sitting in a hotel room in Amarillo because everyone knows nature closes at 10PM. <a href="/2010/jul/15/why-national-parks-are-better-state-parks/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_why_national, 'click', function() {
openWin(c_why_national,marker_why_national);
});
var marker_the_legend = new google.maps.Marker({
position: new google.maps.LatLng(31.9819206926, -98.0308770997),
map: map,
shadow: shadow,
icon: image
});
var c_the_legend = '<div class="infowin"><h4>The Legend of Billy the Kid<\/h4><span class="date blok">July 11, 2010 (Hico, Texas)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/Billykid.jpg" height="100" alt="The Legend of Billy the Kid" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>History rarely offers neat, tidy stories. But the messier, more confusing and more controversial the story becomes, the more it works its way into our imaginations. The legend of Billy the Kid is like that of Amelia Earhart or D.B. Cooper \u0026mdash\u003B the less we know for sure, the more compelling the story becomes. <a href="/2010/jul/11/legend-billy-the-kid/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_legend, 'click', function() {
openWin(c_the_legend,marker_the_legend);
});
var marker_the_dixie = new google.maps.Marker({
position: new google.maps.LatLng(29.9559036138, -90.0651186579),
map: map,
shadow: shadow,
icon: image
});
var c_the_dixie = '<div class="infowin"><h4>The Dixie Drug Store<\/h4><span class="date blok">July 8, 2010 (New Orleans, Louisiana)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/nopharmacymuseum.jpg" height="100" alt="The Dixie Drug Store" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>New Orleans is it\u0027s own world. So much so that\u0027s it\u0027s impossible to put your finger on what it is that makes it different. New Orleans is a place where the line between consensus reality and private dream seems to have never fully developed. And a wonderful world it is. <a href="/2010/jul/08/dixie-drug-store/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_dixie, 'click', function() {
openWin(c_the_dixie,marker_the_dixie);
});
var marker_begin_the = new google.maps.Marker({
position: new google.maps.LatLng(30.3804002966, -89.0308105822),
map: map,
shadow: shadow,
icon: image
});
var c_begin_the = '<div class="infowin"><h4>Begin the Begin<\/h4><span class="date blok">July 5, 2010 (Gulf Port, Mississippi)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/gulf_port_beach_tn.jpg" height="100" alt="Begin the Begin" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>It\u0027s travel time again. This time I\u0027m driving my 1969 Ford truck out west, to Texas, Colorado, Utah and more\u0026nbsp\u003B\u0026mdash\u003B a road trip around the western United States. The first stop is Gulf Port, Mississippi. It\u0027s hard to believe, sitting here on the deserted beaches of Gulf Shore, watching the sun break through the ominous clouds, but soon this beauty will be gone. The BP oil spill is somewhere out there, blown slowly ashore by the storm hovering over us, waiting to drown the beaches in crude. <a href="/2010/jul/05/begin-the-begin/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_begin_the, 'click', function() {
openWin(c_begin_the,marker_begin_the);
});
var marker_los_angeles = new google.maps.Marker({
position: new google.maps.LatLng(34.0558238743, -118.235882504),
map: map,
shadow: shadow,
icon: image
});
var c_los_angeles = '<div class="infowin"><h4>Los Angeles, I'm Yours<\/h4><span class="date blok">May 17, 2010 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/launiontickets.jpg" height="100" alt="Los Angeles, I'm Yours" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Los Angeles is all about the car. Shiny, air\u002Dconditioned comfort, gliding you soundlessly from one place to another without the need to interact with anything in between. But I have discovered that if you abandon the car for the subway and your own two feet, the illusion that L.A. is just a model train set world \u0026mdash\u003B tiny, plastic and devoid of any ground beneath the ground \u0026mdash\u003B fades and you find yourself, for a time, in a real city. <a href="/2010/may/17/los-angeles-im-yours/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_los_angeles, 'click', function() {
openWin(c_los_angeles,marker_los_angeles);
});
var marker_therell_be = new google.maps.Marker({
position: new google.maps.LatLng(36.4209025772, -116.80985926),
map: map,
shadow: shadow,
icon: image
});
var c_therell_be = '<div class="infowin"><h4>(There'll Be) Peace in the Valley<\/h4><span class="date blok">April 24, 2010 (Death Valley, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbnail/2010/deathvalley.jpg" height="100" alt="(There'll Be) Peace in the Valley" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Sometimes you ignore the places close to home because, well, there\u0027s always next weekend. Which is why I never made it Death Valley in the twenty\u002Dfive years I lived in California. It took being all the way across the country to get me out to Death Valley. Which might explain why I actually got up before dawn just to watch the sunrise at Zabriskie Point. <a href="/2010/apr/24/death-valley/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_therell_be, 'click', function() {
openWin(c_therell_be,marker_therell_be);
});
var marker_so_far = new google.maps.Marker({
position: new google.maps.LatLng(30.9134155185, -82.1832228796),
map: map,
shadow: shadow,
icon: image
});
var c_so_far = '<div class="infowin"><h4>So Far, I Have Not Found The Science<\/h4><span class="date blok">March 13, 2010 (Okefenokee Swamp, Georgia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2010/okeefenokee.jpg" height="100" alt="So Far, I Have Not Found The Science" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>A canoe trip through the Okefenokee Swamp down in the southern most corner of Georgia. Paddling the strange reddish and incredibly still waters. Begging alligators, aching muscles and the kindly folks of Stintson\u0027s Barbecue all getting their due. <a href="/2010/mar/13/so-far-i-have-not-found-science/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_so_far, 'click', function() {
openWin(c_so_far,marker_so_far);
});
var marker_how_to = new google.maps.Marker({
position: new google.maps.LatLng(33.9576352028, -83.4087180975),
map: map,
shadow: shadow,
icon: image
});
var c_how_to = '<div class="infowin"><h4>How to Get Off Your Butt and Travel the World<\/h4><span class="date blok">May 3, 2009 (Athens, Georgia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2010/traveltheworld.jpg" height="100" alt="How to Get Off Your Butt and Travel the World" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>How do you make the leap from cubicle daydreams to life on to the road? You want to travel the world, but, like me, you have a million excuses stopping you. How do overcome the inertia that keeps you trapped in a life that isn\u0027t what you want it to be? Here\u0027s a few practical tips and how tos designed to motivate you to get off your butt and travel the world. <a href="/2009/may/03/how-to-get-your-butt-and-travel-world/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_how_to, 'click', function() {
openWin(c_how_to,marker_how_to);
});
var marker_no_strangers = new google.maps.Marker({
position: new google.maps.LatLng(33.9581869416, -83.4082460287),
map: map,
shadow: shadow,
icon: image
});
var c_no_strangers = '<div class="infowin"><h4>No Strangers on a Train<\/h4><span class="date blok">April 13, 2009 (Athens, Georgia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2009/strangersonatrain.jpg" height="100" alt="No Strangers on a Train" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>We mythologize trains because they harken back to an age of community travel, a real, tangible community of travelers, not just backpackers, but people from all walks of life, people traveling near and far together in a shared space that isn\u0027t locked down like an airplane and isn\u0027t isolated like a car\u003B it\u0027s a shared travel experience and there are precious few of those left in our world. <a href="/2009/apr/13/strangers-on-a-train/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_no_strangers, 'click', function() {
openWin(c_no_strangers,marker_no_strangers);
});
var marker_leonardo_da = new google.maps.Marker({
position: new google.maps.LatLng(33.5214419937, -86.810799825),
map: map,
shadow: shadow,
icon: image
});
var c_leonardo_da = '<div class="infowin"><h4>Leonardo Da Vinci and the Codex on Bunnies<\/h4><span class="date blok">December 9, 2008 (Birmingham, Alabama)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2009/codexofbunnies.jpg" height="100" alt="Leonardo Da Vinci and the Codex on Bunnies" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>A few pages from Leonardo Da Vinci\u0027s notebooks make a rare trip outside Italy, to Birmingham, AL, of all places. But the Birmingham Museum of Art is home to far more alarming works of art, works which depict the eventual, inevitable, bunny takeover, after which all the elements of our reality will be replaced by bunnies. Seriously. You heard it here first. <a href="/2008/dec/09/leonardo-da-vinci-and-codex-bunnies/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_leonardo_da, 'click', function() {
openWin(c_leonardo_da,marker_leonardo_da);
});
var marker_elkmont_and = new google.maps.Marker({
position: new google.maps.LatLng(35.6804462348, -83.6502456549),
map: map,
shadow: shadow,
icon: image
});
var c_elkmont_and = '<div class="infowin"><h4>Elkmont and the Great Smoky Mountains<\/h4><span class="date blok">October 31, 2008 (Great Smoky Mountains, Tennessee)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/reflectedtrees.jpg" height="100" alt="Elkmont and the Great Smoky Mountains" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Pigeon Forge is Myrtle Beach in the mountains. Redneck weddings cascade straight out of the chapel and into the mini golf reception area. Pigeon Forge is everything that\u0027s wrong with America. But we aren\u0027t here for Pigeon Forge, it just happens to have a free condo we\u0027re staying in. We\u0027re here for the mountains. Smoky Mountain National Park is just a few miles up the road. <a href="/2008/oct/31/elkmont-and-great-smoky-mountains/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_elkmont_and, 'click', function() {
openWin(c_elkmont_and,marker_elkmont_and);
});
var marker_rope_swings = new google.maps.Marker({
position: new google.maps.LatLng(34.5346315992, -83.9028024557),
map: map,
shadow: shadow,
icon: image
});
var c_rope_swings = '<div class="infowin"><h4>Rope Swings and River Floats<\/h4><span class="date blok">July 27, 2008 (Mountain Cabin, Georgia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/chestateeriver.jpg" height="100" alt="Rope Swings and River Floats" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Two weekends ago we went up to the mountains, just outside of Dahlonega GA, and floated the Chestatee River using inner tubes, various pool toys and one super\u002Dcool inflatable seahorse. Unfortunately, proving one of my travel mottos \u002D\u002D you can never go back \u002D\u002D a return trip proved disastrous. <a href="/2008/jul/27/rope-swings-and-river-floats/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_rope_swings, 'click', function() {
openWin(c_rope_swings,marker_rope_swings);
});
var marker_our_days = new google.maps.Marker({
position: new google.maps.LatLng(12.4364822429, -86.8845820306),
map: map,
shadow: shadow,
icon: image
});
var c_our_days = '<div class="infowin"><h4>Our Days Are Becoming Nights<\/h4><span class="date blok">July 6, 2008 (León, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/daysnights.jpg" height="100" alt="Our Days Are Becoming Nights" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>A short thought on the eve of our departure from Nicaragua: Everywhere I go I think, I should live here... I should be able to not just visit places, but in habit them. Of course that isn\u0027t possible, which is too bad. <a href="/2008/jul/06/our-days-are-becoming-nights/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_our_days, 'click', function() {
openWin(c_our_days,marker_our_days);
});
var marker_tiny_cities = new google.maps.Marker({
position: new google.maps.LatLng(12.4356545517, -86.882200229),
map: map,
shadow: shadow,
icon: image
});
var c_tiny_cities = '<div class="infowin"><h4>Tiny Cities Made of Ash<\/h4><span class="date blok">July 3, 2008 (León, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/citiesmadeofash.jpg" height="100" alt="Tiny Cities Made of Ash" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The church bells of Le\u0026oacute\u003Bn have become a constant cacophony, not the rhythmic ringing out of the hours or tolling from Mass that the human mind seems to find pleasant, but the atonal banging that only appeals to the young and dumb. But Francisco is entirely unperturbed\u003B He\u0027s too fascinated with the tattoo on Corrinne\u0027s shoulder to bother with what slowly just becomes yet another sound echoing through Le\u0026oacute\u003Bn. <a href="/2008/jul/03/tiny-cities-made-ash/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_tiny_cities, 'click', function() {
openWin(c_tiny_cities,marker_tiny_cities);
});
var marker_you_cant = new google.maps.Marker({
position: new google.maps.LatLng(12.2896883818, -82.9709815864),
map: map,
shadow: shadow,
icon: image
});
var c_you_cant = '<div class="infowin"><h4>You Can't Go Home Again<\/h4><span class="date blok">June 30, 2008 (Little Corn Island, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/nohomeagain.jpg" height="100" alt="You Can't Go Home Again" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The first time we came to Little Corn Island it was April, the tail end of the dry season. It rained once or twice, but never for more than five minutes and always followed by more sunshine. This time it\u0027s the end of June, just well into the wet season, and the island is an entirely different place. <a href="/2008/jun/30/you-cant-go-home-again/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_you_cant, 'click', function() {
openWin(c_you_cant,marker_you_cant);
});
var marker_returning_again = new google.maps.Marker({
position: new google.maps.LatLng(12.2906947452, -82.9713249091),
map: map,
shadow: shadow,
icon: image
});
var c_returning_again = '<div class="infowin"><h4>Returning Again &mdash; Back on Little Corn Island<\/h4><span class="date blok">June 26, 2008 (Little Corn Island, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/littlecornagain.jpg" height="100" alt="Returning Again &mdash; Back on Little Corn Island" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/> Generally speaking, the world seems so huge and so full of amazing destinations that repeating one never struck me as a judicious use of my short allotment of time. But for Little Corn Island I\u0027m willing to make an exception and of course, the universe being what it is, our second trip to Little Corn Island has been unpredictable and entirely new. <a href="/2008/jun/26/returning-again-back-little-corn-island/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_returning_again, 'click', function() {
openWin(c_returning_again,marker_returning_again);
});
var marker_in_love = new google.maps.Marker({
position: new google.maps.LatLng(33.94487747, -83.3886068943),
map: map,
shadow: shadow,
icon: image
});
var c_in_love = '<div class="infowin"><h4>In Love With a View: Vagabonds, Responsibilty and Living Well<\/h4><span class="date blok">June 7, 2008 (Athens, Georgia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/wrong.jpg" height="100" alt="In Love With a View: Vagabonds, Responsibilty and Living Well" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Why all the vitriol about a seemingly innocuous concept \u002D\u002D that traveling doesn\u0027t have to cost a lot of money, isn\u0027t all that difficult and hey, you can even go right now? People like us, who feel tied down by responsibility, find the suggestion that we actually aren\u0027t tied down patronizing and yes, elitist. <a href="/2008/jun/07/love-with-a-view-vagabonds-responsibilty-living-we/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_in_love, 'click', function() {
openWin(c_in_love,marker_in_love);
});
var marker_little_island = new google.maps.Marker({
position: new google.maps.LatLng(12.2974037367, -82.9745864753),
map: map,
shadow: shadow,
icon: image
});
var c_little_island = '<div class="infowin"><h4>Little Island in the Sun<\/h4><span class="date blok">April 5, 2008 (Little Corn Island, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/coconutsun.jpg" height="100" alt="Little Island in the Sun" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>We arrived on Little Corn Island around sundown and met Ali, whom I at first took to be a tout, but he showed us the way to our guesthouse and, after settling in and getting a feel for the island, I realized that Ali, wasn\u0027t a tout, he was just a really nice guy who enjoyed doing favors for tourists, just beware the Yoni beverage he offers. <a href="/2008/apr/05/little-island-sun/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_little_island, 'click', function() {
openWin(c_little_island,marker_little_island);
});
var marker_return_to = new google.maps.Marker({
position: new google.maps.LatLng(11.2543844991, -85.8734750628),
map: map,
shadow: shadow,
icon: image
});
var c_return_to = '<div class="infowin"><h4>Return to the Sea<\/h4><span class="date blok">April 2, 2008 (San Juan Del Sur, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/sanjuansunset.jpg" height="100" alt="Return to the Sea" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Southwestern Nicaragua is a very small strip of land with Lago Nicaragua to the east and the Pacific Ocean to the west. The main town in the area, Juan Del Sur, is nestled around a well protected harbor with a mediocre strip of sand. For the nice beaches you have to head up or down the coast to one of the many small inlets. <a href="/2008/apr/02/return-sea/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_return_to, 'click', function() {
openWin(c_return_to,marker_return_to);
});
var marker_ring_the = new google.maps.Marker({
position: new google.maps.LatLng(11.9320622659, -85.9581363081),
map: map,
shadow: shadow,
icon: image
});
var c_ring_the = '<div class="infowin"><h4>Ring The Bells<\/h4><span class="date blok">March 30, 2008 (Granada, Nicaragua)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/ringthbells.jpg" height="100" alt="Ring The Bells" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The Church, which dates from the 1600s has the the narrowest, steepest, circular concrete staircase that I\u0027ve ever encountered. It had a low railing and circled up four stories worth of precipitous dropoffs before you hit solid ground. From the top was a views of Granada\u0027s endless sea of mottled pink, orange and brown hues \u002D\u002D terra cotta roof tiles stretching from the shores of Lago Nicaragua all the way back toward the hills. <a href="/2008/mar/30/ring-bells/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_ring_the, 'click', function() {
openWin(c_ring_the,marker_ring_the);
});
var marker_fall = new google.maps.Marker({
position: new google.maps.LatLng(33.9448641195, -83.3885693434),
map: map,
shadow: shadow,
icon: image
});
var c_fall = '<div class="infowin"><h4>Fall<\/h4><span class="date blok">November 14, 2007 (Athens, Georgia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/fall.jpg" height="100" alt="Fall" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The trees are in full technicolor swing. The land is slowly dying, and not just because it\u0027s Fall, we\u0027re also in the middle of a prolonged drought and this year the leaves are opting for a James Dean\u002Dstyle, leave\u002Da\u002Dgood\u002Dlooking\u002Dcorpse exit. If you\u0027re a leaf and you\u0027ve got to go, do it with class. <a href="/2007/nov/14/fall/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_fall, 'click', function() {
openWin(c_fall,marker_fall);
});
var marker_on_the = new google.maps.Marker({
position: new google.maps.LatLng(33.4619143859, -118.52130173),
map: map,
shadow: shadow,
icon: image
});
var c_on_the = '<div class="infowin"><h4>On The Other Ocean<\/h4><span class="date blok">July 23, 2007 (Catalina Island, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/sailing.jpg" height="100" alt="On The Other Ocean" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Consider what would happen if your house were tilted 30 degrees to the left, how this would complicate ordinary activities \u002D\u002D like say walking. Now throw in a bouncing motion that lifts the floor five or six feet up and down in a seesaw\u002Dlike motion on a perpendicular axis to the 30 degree tilt \u002D\u002D things become more like riding a seesaw that\u0027s attached to a merry\u002Dgo\u002Dround which is missing a few bolts. That\u0027s sailing. <a href="/2007/jul/23/other-ocean/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_on_the, 'click', function() {
openWin(c_on_the,marker_on_the);
});
var marker_being_there = new google.maps.Marker({
position: new google.maps.LatLng(33.6839251309, -78.9283561597),
map: map,
shadow: shadow,
icon: image
});
var c_being_there = '<div class="infowin"><h4>Being There<\/h4><span class="date blok">June 17, 2007 (Myrtle Beach Airport, South Carolina)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/myrtlebeachcrap.jpg" height="100" alt="Being There" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Myrtle Beach does not exist. Nearly everything in Myrtle Beach is a paltry derivative of some original form. For instance, most of the country has golf courses, in Myrtle Beach there are endless rows of putt\u002Dputt courses, where most towns attempt to draw in big name musical acts for their tourist venues, Myrtle Beach is content with impersonators. <a href="/2007/jun/17/being-there/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_being_there, 'click', function() {
openWin(c_being_there,marker_being_there);
});
var marker_sailing_through = new google.maps.Marker({
position: new google.maps.LatLng(32.8355703352, -79.8225617298),
map: map,
shadow: shadow,
icon: image
});
var c_sailing_through = '<div class="infowin"><h4>Sailing Through<\/h4><span class="date blok">June 14, 2007 (Charleston, South Carolina)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/charlestonships.jpg" height="100" alt="Sailing Through" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The rumors are true. I moved back to the south\u003B Athens GA to be exact. But I hate staying in one place for too long, so after a month or two in Athens I headed up to Charleston to visit a friend. The south is curious place. If you\u0027ve never been here I couldn\u0027t hope to explain it, but it\u0027s not so much a place as an approach. A way of getting somewhere more than anywhere specific. Perhaps even a wrong turn. \u000D\u000A <a href="/2007/jun/14/sailing-through/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_sailing_through, 'click', function() {
openWin(c_sailing_through,marker_sailing_through);
});
var marker_goodbye_to = new google.maps.Marker({
position: new google.maps.LatLng(34.0409072252, -118.47207783),
map: map,
shadow: shadow,
icon: image
});
var c_goodbye_to = '<div class="infowin"><h4>Goodbye to the Mother and the Cove<\/h4><span class="date blok">March 1, 2007 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/lacloud.jpg" height="100" alt="Goodbye to the Mother and the Cove" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>It\u0027s strange how you can plan something, go through all the motions of making it happen without ever really understanding what you\u0027re doing. I\u0027ve been doing this for the better part of three years now. I realized recently that I have no real idea how I came to be here. \u000D\u000A <a href="/2007/mar/01/goodbye-mother-and-cove/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_goodbye_to, 'click', function() {
openWin(c_goodbye_to,marker_goodbye_to);
});
var marker_everything_all = new google.maps.Marker({
position: new google.maps.LatLng(33.9753068641, -118.428904994),
map: map,
shadow: shadow,
icon: image
});
var c_everything_all = '<div class="infowin"><h4>Everything All The Time<\/h4><span class="date blok">February 3, 2007 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/end.jpg" height="100" alt="Everything All The Time" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I don\u0027t know if I\u0027m just overly paranoid but when I call up memories in the dark hours of the Beaujolais\u002Dsoaked pre\u002Ddawn, I see a collection of mildly amusing, occasionally painful series of embarrassments, misunderstandings and general wrong\u002Dplace, wrong\u002Dtime sort of moments. Which isn\u0027t to imply that my life is a British sitcom, just that I\u0027m not in a hurry to re\u002Dlive any of it. <a href="/2007/feb/03/everything-all-time/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_everything_all, 'click', function() {
openWin(c_everything_all,marker_everything_all);
});
var marker_the_sun = new google.maps.Marker({
position: new google.maps.LatLng(33.9751734061, -118.428872807),
map: map,
shadow: shadow,
icon: image
});
var c_the_sun = '<div class="infowin"><h4>The Sun Came Up With No Conclusions<\/h4><span class="date blok">January 11, 2007 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/illuminatus.jpg" height="100" alt="The Sun Came Up With No Conclusions" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>\u0022And so it is that we, as men, do not exist until we do\u003B and then it is that we play with our world of existent things, and order and disorder them, and so it shall be that non\u002Dexistence shall take us back from existence and that nameless spirituality shall return to Void, like a tired child home from a very wild circus.\u0022 \u002D\u002D Robert Anton Wilson and Kerry Thornley. Good luck and Godspeed Mr. Wilson. <a href="/2007/jan/11/sun-came-no-conclusions/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_sun, 'click', function() {
openWin(c_the_sun,marker_the_sun);
});
var marker_give_it = new google.maps.Marker({
position: new google.maps.LatLng(33.9751956491, -118.42893718),
map: map,
shadow: shadow,
icon: image
});
var c_give_it = '<div class="infowin"><h4>Give It Up Or Turnit A Loose<\/h4><span class="date blok">December 25, 2006 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/jamesbrown.jpg" height="100" alt="Give It Up Or Turnit A Loose" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Traveling soul. Soul is not something out there or in you, it\u0027s the place where you meet the out there\u003B something very similar to what I think James Brown meant \u0026mdash\u003B a mixture of the secular and the spiritual, the profane and the sublime. <a href="/2006/dec/25/give-it-or-turnit-loose/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_give_it, 'click', function() {
openWin(c_give_it,marker_give_it);
});
var marker_homeward = new google.maps.Marker({
position: new google.maps.LatLng(33.9751600603, -118.42903374),
map: map,
shadow: shadow,
icon: image
});
var c_homeward = '<div class="infowin"><h4>Homeward<\/h4><span class="date blok">June 9, 2006 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/trappedmoth.jpg" height="100" alt="Homeward" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>New York, New York. John F Kennedy airport 1 am date unknown, sleepy looking customs guard stamps a passport without hardly looking at, without even checking to see where I had been. A light drizzle is falling outside and the subways extension to the terminal never looked so good. What is it like to be home? I don\u0027t know, I\u0027ll tell you when I get there. <a href="/2006/jun/09/homeward/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_homeward, 'click', function() {
openWin(c_homeward,marker_homeward);
});
var marker_cadenza = new google.maps.Marker({
position: new google.maps.LatLng(48.8634584438, 2.36108422246),
map: map,
shadow: shadow,
icon: image
});
var c_cadenza = '<div class="infowin"><h4>Cadenza<\/h4><span class="date blok">June 6, 2006 (Paris, France)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/parisglow.jpg" height="100" alt="Cadenza" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Paris \u002D Outside it\u0027s raining. Beads of water form on the window in front of me. The glow of the unseen sun is fading behind midnight blue clouds and darkening sky. An old man in a butcher apron selling oysters under an awning smokes a cigarette and watches the mothers and children walking home with bags of groceries. <a href="/2006/jun/06/cadenza/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_cadenza, 'click', function() {
openWin(c_cadenza,marker_cadenza);
});
var marker_i_dont = new google.maps.Marker({
position: new google.maps.LatLng(48.2099677697, 16.3706481434),
map: map,
shadow: shadow,
icon: image
});
var c_i_dont = '<div class="infowin"><h4>I Don't Sleep I Dream<\/h4><span class="date blok">May 28, 2006 (Vienna, Austria)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/freudsoffice.jpg" height="100" alt="I Don't Sleep I Dream" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>How can Freud\u0027s former residence in Vienna lack a couch? The closest thing is up against the wall, behind a small writing desk in what was then the waiting room \u0026mdash\u003B a small divan where one might stare at the patternless ceiling until the patterns emerge as it were. “Tell me about it,” he began. <a href="/2006/may/28/i-dont-sleep-i-dream/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_i_dont, 'click', function() {
openWin(c_i_dont,marker_i_dont);
});
var marker_unreflected = new google.maps.Marker({
position: new google.maps.LatLng(48.2099677697, 16.3706481434),
map: map,
shadow: shadow,
icon: image
});
var c_unreflected = '<div class="infowin"><h4>Unreflected<\/h4><span class="date blok">May 27, 2006 (Vienna, Austria)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/selfportraitconvex.jpg" height="100" alt="Unreflected" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The Kunsthistorisches Museum contains probably the best collection of art outside of France \u0026mdash\u003B Rubens, Rembrandt, Vermeer, Raphael, Velazquez, Bruegel and a certain Italian for whom I have a festering personal obsession, which shall be addressed shortly \u0026mdash\u003B and what\u0027s remarkable about this magnificent assemblage is that the vast majority of it was once the Hapsburg\u0027s private collection. <a href="/2006/may/27/unreflected/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_unreflected, 'click', function() {
openWin(c_unreflected,marker_unreflected);
});
var marker_four_minutes = new google.maps.Marker({
position: new google.maps.LatLng(50.0898463908, 14.418117998),
map: map,
shadow: shadow,
icon: image
});
var c_four_minutes = '<div class="infowin"><h4>Four Minutes Thirty-Three Seconds<\/h4><span class="date blok">May 26, 2006 (Prague, Czech Republic)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/wallofnames.jpg" height="100" alt="Four Minutes Thirty-Three Seconds" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Just north of Prague\u0027s old town square and east of the River Vltava is Josefov, the old Jewish quarter of Prague. The Pinkas Synagogue in Josefov is an unassuming pale, sand\u002Dcolored building with a slightly sunken entrance. Inside is a small alter and little else. The floor is bare\u003B there are no places for worshipers to sit. The synagogue is little more than walls. And on the walls inscribed in extremely small print are the names of the 77,297 Jewish citizens of Bohemia and Moravia who died in the Holocaust.\u000D\u000A <a href="/2006/may/26/four-minutes-thirty-three-seconds/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_four_minutes, 'click', function() {
openWin(c_four_minutes,marker_four_minutes);
});
var marker_inside_and = new google.maps.Marker({
position: new google.maps.LatLng(48.810530578, 14.3173527698),
map: map,
shadow: shadow,
icon: image
});
var c_inside_and = '<div class="infowin"><h4>Inside and Out<\/h4><span class="date blok">May 25, 2006 (Cesky Krumlov, Czech Republic)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/krumlovcastleatnight.jpg" height="100" alt="Inside and Out" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Chasing Egon Schiele: The attention to detail that makes the difference between a building and work of art was everywhere in Cesky Krumlov, from the delicate pink and red complements of a fine dovetailed corner, to the white plaster and oak beams of the Egon Schiele museum, which, despite geometric differences, looked not unlike the Globe Theatre in London. <a href="/2006/may/25/inside-and-out/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_inside_and, 'click', function() {
openWin(c_inside_and,marker_inside_and);
});
var marker_the_king = new google.maps.Marker({
position: new google.maps.LatLng(46.3652099826, 14.1099429111),
map: map,
shadow: shadow,
icon: image
});
var c_the_king = '<div class="infowin"><h4>The King of Carrot Flowers Part Two<\/h4><span class="date blok">May 22, 2006 (Bled, Slovenia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/sloveniachurch.jpg" height="100" alt="The King of Carrot Flowers Part Two" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>There is a roughly 200km loop of road that leads northwest out of Bled, through a pass in the Julian Alps and then down the other side, twisting and winding back toward Bled by way of craggy canyons, small hamlets and crystalline rivers. We set out sometime after breakfast. <a href="/2006/may/22/king-carrot-flowers-part-two/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_king, 'click', function() {
openWin(c_the_king,marker_the_king);
});
var marker_ghost = new google.maps.Marker({
position: new google.maps.LatLng(46.0508598563, 14.5067489127),
map: map,
shadow: shadow,
icon: image
});
var c_ghost = '<div class="infowin"><h4>Ghost<\/h4><span class="date blok">May 19, 2006 (Ljubljana, Slovenia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/trogirnight.jpg" height="100" alt="Ghost" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Like Dubrovnik, Trogir is a walled city of roughly Venetian vintage, but Trogir\u0027s wall has largely crumbled away or been removed. Still, it has the gorgeous narrow cobblestone streets, arched doorways and towering forts that give all Dalmatian towns their Rapunzel\u002Dlike fairly tale quality. <a href="/2006/may/19/ghost/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_ghost, 'click', function() {
openWin(c_ghost,marker_ghost);
});
var marker_feel_good = new google.maps.Marker({
position: new google.maps.LatLng(42.6413383843, 18.1090521787),
map: map,
shadow: shadow,
icon: image
});
var c_feel_good = '<div class="infowin"><h4>Feel Good Lost<\/h4><span class="date blok">May 17, 2006 (Dubrovnik, Croatia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/dubrovnik.jpg" height="100" alt="Feel Good Lost" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Dubrovnik, Croatia was heavily shelled during the Bosnian conflict and roughly 65 percent of its buildings were hit, built for the most part you\u0027d never know it. Most of the buildings date from about 1468, though some were destroyed in the great earthquake of 1667, still, by and large, the city looks as it did in the fifteenth century. <a href="/2006/may/17/feel-good-lost/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_feel_good, 'click', function() {
openWin(c_feel_good,marker_feel_good);
});
var marker_blue_milk = new google.maps.Marker({
position: new google.maps.LatLng(42.6413383843, 18.1090521787),
map: map,
shadow: shadow,
icon: image
});
var c_blue_milk = '<div class="infowin"><h4>Blue Milk<\/h4><span class="date blok">May 15, 2006 (Lake Plitvice, Croatia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/plitvice.jpg" height="100" alt="Blue Milk" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>It\u0027s hard to understand, standing on the banks of such crystalline, cerulean lakes, whose dazzling colors come from the mineral rich silt runoff of glaciers, that the largest European conflict since world war two began here, at Like Plitvice Croatia. But indeed this is where the first shots were fired on Easter Sunday in 1991 and the first casualty was a park policeman. <a href="/2006/may/15/blue-milk/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_blue_milk, 'click', function() {
openWin(c_blue_milk,marker_blue_milk);
});
var marker_refracted_light = new google.maps.Marker({
position: new google.maps.LatLng(47.4838008623, 19.0621376011),
map: map,
shadow: shadow,
icon: image
});
var c_refracted_light = '<div class="infowin"><h4>Refracted Light and Grace<\/h4><span class="date blok">May 10, 2006 (Budapest, Hungary)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/castlehillbuda.jpg" height="100" alt="Refracted Light and Grace" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Evening, after dinner, outside on the balcony, smoking cigarettes and contemplating the nightscape of Buda\u0027s Castle Hill rising up out of its own golden reflection in the shimmering Danube waters. The drone of car horns in the distance and the electric tram squealing as it pulls out of the station below on the river a boat slowly churns upstream... <a href="/2006/may/10/refracted-light-and-grace/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_refracted_light, 'click', function() {
openWin(c_refracted_light,marker_refracted_light);
});
var marker_london_calling = new google.maps.Marker({
position: new google.maps.LatLng(51.5511920468, -0.14955997465),
map: map,
shadow: shadow,
icon: image
});
var c_london_calling = '<div class="infowin"><h4>London Calling<\/h4><span class="date blok">May 9, 2006 (London, United Kingdom)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/londonthames.jpg" height="100" alt="London Calling" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>London: The British don\u0027t want me \u002D\u002D no money, no proof I\u0027m leaving and no real reason for coming, good lord, I must be a vagabond, up to no good, surely. Eventually the customs agent relents and lets me in, a favor I repay by nearly burning down one of London\u0027s bigger parks. Seriously. <a href="/2006/may/09/london-calling/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_london_calling, 'click', function() {
openWin(c_london_calling,marker_london_calling);
});
var marker_closing_time = new google.maps.Marker({
position: new google.maps.LatLng(7.0586452367, 98.5398101669),
map: map,
shadow: shadow,
icon: image
});
var c_closing_time = '<div class="infowin"><h4>Closing Time<\/h4><span class="date blok">April 30, 2006 (Trang, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/thailandtrain.jpg" height="100" alt="Closing Time" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Headed back to Europe: I started to write a bit of reminiscence, trying to remember the highlights of my time in Asia before I return to the west, but about halfway through I kept thinking of a popular Buddhist saying \u0026mdash\u003B be here now. Most of these dispatches are written in past tense, but this time I want to simply be here now. This moment, on this train. This is the last time I\u0027ll post something from Southeast Asia. <a href="/2006/apr/30/closing-time/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_closing_time, 'click', function() {
openWin(c_closing_time,marker_closing_time);
});
var marker_beginning_of = new google.maps.Marker({
position: new google.maps.LatLng(7.40906927581, 99.207916246),
map: map,
shadow: shadow,
icon: image
});
var c_beginning_of = '<div class="infowin"><h4>Beginning of the End<\/h4><span class="date blok">April 21, 2006 (Koh Kradan, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/kokradan.jpg" height="100" alt="Beginning of the End" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I wasn\u0027t expecting much from Ko Kradan, but in the end I discovered a slice of Thailand the way it\u0027s often describe by wistful hippies who first came here twenty years ago. Tong and Ngu and the rest of the Thais working at Paradise Lost were the nicest people I met in Thailand and Wally was by far the most laid back farang I\u0027ve come across. I ended up staying on Ko Kradan for the remainder of my time in the south.\u000D\u000A <a href="/2006/apr/21/beginning-end/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_beginning_of, 'click', function() {
openWin(c_beginning_of,marker_beginning_of);
});
var marker_going_down = new google.maps.Marker({
position: new google.maps.LatLng(7.73582685702, 98.7787628036),
map: map,
shadow: shadow,
icon: image
});
var c_going_down = '<div class="infowin"><h4>Going Down South<\/h4><span class="date blok">April 10, 2006 (Koh Phi Phi, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/thailandleahkate.jpg" height="100" alt="Going Down South" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The Phi Phi Island Resort, where some friends were staying, is nestled on the leeward shore of Koh Phi Phi Island and posts a private beach, beautiful reef, fancy swimming pools and rooms with real sheets. Unheard of. I sauntered in a day early, acted like I owned the place, rented snorkel gear, charged it to a random room number and spent the afternoon on the reef. If only I could have put it on the Underhill\u0027s credit card. <a href="/2006/apr/10/going-down-south/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_going_down, 'click', function() {
openWin(c_going_down,marker_going_down);
});
var marker_the_book = new google.maps.Marker({
position: new google.maps.LatLng(10.6262758656, 103.499450669),
map: map,
shadow: shadow,
icon: image
});
var c_the_book = '<div class="infowin"><h4>The Book of Right On<\/h4><span class="date blok">March 30, 2006 (Sinoukville, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/goodbyes.jpg" height="100" alt="The Book of Right On" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The next day we continued on to Sinoukville which is Cambodia\u0027s attempt at a seaside resort. Combining the essential elements of Goa and Thailand, Sinoukville is a pleasant, if somewhat hippy\u002Doriented, travelers haven. We rented Honda Dreams and cruised down the coast to deserted white sand beaches, thatched huts serving noodles and rice, where we watched sunsets and dodged rain storms. <a href="/2006/mar/30/book-right/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_book, 'click', function() {
openWin(c_the_book,marker_the_book);
});
var marker_midnight_in = new google.maps.Marker({
position: new google.maps.LatLng(10.4382670171, 104.323253617),
map: map,
shadow: shadow,
icon: image
});
var c_midnight_in = '<div class="infowin"><h4>Midnight in a Perfect World<\/h4><span class="date blok">March 26, 2006 (Death Island, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/deathisland.jpg" height="100" alt="Midnight in a Perfect World" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Death Island, as Rob nicknamed it, was just what I needed. The first day we sat down for lunch and ordered crab\u003B a boy in his underwear proceeded to run out of the kitchen, swam out in the ocean and began unloading crabs from a trap into a bucket. It doesn\u0027t get much fresher than that. Throw in a nice beach, some cheap bungalows and you\u0027re away. <a href="/2006/mar/26/midnight-perfect-world/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_midnight_in, 'click', function() {
openWin(c_midnight_in,marker_midnight_in);
});
var marker_angkor_wat = new google.maps.Marker({
position: new google.maps.LatLng(13.4978081268, 103.892898545),
map: map,
shadow: shadow,
icon: image
});
var c_angkor_wat = '<div class="infowin"><h4>Angkor Wat<\/h4><span class="date blok">March 21, 2006 (Angkor Wat, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/angkorwat.jpg" height="100" alt="Angkor Wat" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Roughly half a million people a year visit Angkor Wat. The first evening we decided to see just how tourist\u002Dfilled Angkor was by heading to the most popular sunset temple, Phnom Bakheng, to watch the sunset. And there were a lot of tourists. Thousands of them. And that was just at one temple. Thus was hatched the plan: see Angkor in the heat of the day. Yes it will be hot. Hot hot hot. Fucking hot. But hopefully empty. <a href="/2006/mar/21/angkor-wat/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_angkor_wat, 'click', function() {
openWin(c_angkor_wat,marker_angkor_wat);
});
var marker_wait_til = new google.maps.Marker({
position: new google.maps.LatLng(13.3612287241, 103.861484513),
map: map,
shadow: shadow,
icon: image
});
var c_wait_til = '<div class="infowin"><h4>...Wait 'til it Blows<\/h4><span class="date blok">March 18, 2006 (Seam Reap, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/landmines.jpg" height="100" alt="...Wait 'til it Blows" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>One the things I may have failed to mention thus far in my Cambodia reportage is that this was/is one of the most heavily mined areas in the world. You might think that removing landmines involves sophisticated technology of the sort you see in BBC documentaries on Bosnia, but here in Cambodia landmine removal is most often handled by the technological marvel of southeast Asia \u0026mdash\u003B the bamboo stick. <a href="/2006/mar/18/wait-til-it-blows/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_wait_til, 'click', function() {
openWin(c_wait_til,marker_wait_til);
});
var marker_beginning_to = new google.maps.Marker({
position: new google.maps.LatLng(12.8211748485, 104.040527329),
map: map,
shadow: shadow,
icon: image
});
var c_beginning_to = '<div class="infowin"><h4>Beginning to See the Light<\/h4><span class="date blok">March 16, 2006 (Battambang, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/floatingvillage.jpg" height="100" alt="Beginning to See the Light" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Surprisingly, a floating village is not that different than a village on the land. There are the same stores, the computer repair shop, the grocers, the petrol station, the temple, the dance hall and all the other things that makeup a town. I could even say with some authority that the town is laid out in streets, watery pathways that form nearly perfect lines. <a href="/2006/mar/16/beginning-see-light/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_beginning_to, 'click', function() {
openWin(c_beginning_to,marker_beginning_to);
});
var marker_blood_on = new google.maps.Marker({
position: new google.maps.LatLng(11.5659755905, 104.927501664),
map: map,
shadow: shadow,
icon: image
});
var c_blood_on = '<div class="infowin"><h4>Blood on the Tracks<\/h4><span class="date blok">March 14, 2006 (Phenom Phen, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/killingfields.jpg" height="100" alt="Blood on the Tracks" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>As I mentioned in the last entry I came down with a bit of a fever for a few days. This was accompanied by what we in the group have come to term, for lack of a nicer, but equally descriptive phrase \u0026mdash\u003B pissing out the ass. It\u0027s not a pretty picture. Nor is it a pleasant experience, and consequently I don\u0027t have a real clear recollection of the journey from Ban Lung to Kratie or from Kratie out to Sen Monoron. <a href="/2006/mar/14/blood-tracks/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_blood_on, 'click', function() {
openWin(c_blood_on,marker_blood_on);
});
var marker_ticket_to = new google.maps.Marker({
position: new google.maps.LatLng(13.7345492998, 106.979413018),
map: map,
shadow: shadow,
icon: image
});
var c_ticket_to = '<div class="infowin"><h4>Ticket To Ride<\/h4><span class="date blok">March 7, 2006 (Ban Lung, Cambodia)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/hondadream.jpg" height="100" alt="Ticket To Ride" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I can\u0027t see. My eyebrows are orange with dust. I cannot see them, but I know they must be\u003B they were yesterday. Every now and then when her legs clench down on my hips or her fingernails dig into my shoulders, I remember Debi is behind me and I am more or less responsible for not killing both of us. <a href="/2006/mar/07/ticket-ride/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_ticket_to, 'click', function() {
openWin(c_ticket_to,marker_ticket_to);
});
var marker_little_corner = new google.maps.Marker({
position: new google.maps.LatLng(14.1309158427, 105.837821946),
map: map,
shadow: shadow,
icon: image
});
var c_little_corner = '<div class="infowin"><h4>Little Corner of the World<\/h4><span class="date blok">February 28, 2006 (Four Thousand Islands, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/siphondon.jpg" height="100" alt="Little Corner of the World" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>It\u0027s difficult to explain but the further south you go in Laos the more relaxed life becomes. Since life in the north is not exactly high stress, by the time we arrived in the four thousand Islands we had to check our pulse periodically to ensure that time was in fact still moving forward. <a href="/2006/feb/28/little-corner-world/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_little_corner, 'click', function() {
openWin(c_little_corner,marker_little_corner);
});
var marker_can8217t_get = new google.maps.Marker({
position: new google.maps.LatLng(14.8060855248, 106.836891159),
map: map,
shadow: shadow,
icon: image
});
var c_can8217t_get = '<div class="infowin"><h4>Can&#8217;t Get There From Here<\/h4><span class="date blok">February 24, 2006 (Attapeu, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/attapeulight.jpg" height="100" alt="Can&#8217;t Get There From Here" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The most magical light in Laos lives on the Bolevan Plateau. For some reason not many tourists seem to make it out to the Bolevan Plateau, in spite of the fact that the roads are quite good, transport runs regularly, the villages peaceful, even sleepy, little hamlets. In short, the Bolevan Plateau is wonderful, and not the least in part because no one else is there. <a href="/2006/feb/24/cant-get-there-here/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_can8217t_get, 'click', function() {
openWin(c_can8217t_get,marker_can8217t_get);
});
var marker_safe_as = new google.maps.Marker({
position: new google.maps.LatLng(14.6239495051, 106.575622544),
map: map,
shadow: shadow,
icon: image
});
var c_safe_as = '<div class="infowin"><h4>Safe as Milk<\/h4><span class="date blok">February 18, 2006 (Sekong, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/usbombs.jpg" height="100" alt="Safe as Milk" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>You would think, if you were the United States and you were illegally and unofficially bombing a foreign country you might not want to stamp \u0022US Bomb\u0022 on the side of your bombs, and yet there it was all over Laos: \u0022US Bomb.\u0022 Clearly somebody didn\u0027t think things all the way through, especially given that roughly one third of said bombs failed to explode. <a href="/2006/feb/18/safe-milk/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_safe_as, 'click', function() {
openWin(c_safe_as,marker_safe_as);
});
var marker_everyday_the = new google.maps.Marker({
position: new google.maps.LatLng(16.5604357571, 104.750261292),
map: map,
shadow: shadow,
icon: image
});
var c_everyday_the = '<div class="infowin"><h4>Everyday the Fourteenth<\/h4><span class="date blok">February 14, 2006 (Champasak, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/hinbunriver.jpg" height="100" alt="Everyday the Fourteenth" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>We piled four large bags, four daypacks and five people in a six meter dugout canoe. The boat was powered by the ever\u002Dpresent\u002Din\u002Dsoutheast\u002DAsia long tail motor which is essential a lawnmower engine with a three meter pole extending out of it to which a small propeller is attached \u0026mdash\u003B perfect for navigating shallow water. And by shallow I mean sometimes a mere inch between the hull and the riverbed. <a href="/2006/feb/14/everyday-fourteenth/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_everyday_the, 'click', function() {
openWin(c_everyday_the,marker_everyday_the);
});
var marker_water_slides = new google.maps.Marker({
position: new google.maps.LatLng(17.5131057154, 105.303955063),
map: map,
shadow: shadow,
icon: image
});
var c_water_slides = '<div class="infowin"><h4>Water Slides and Spirit Guides<\/h4><span class="date blok">February 10, 2006 (Champasak, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/konglorcave.jpg" height="100" alt="Water Slides and Spirit Guides" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The dramatic black karst limestone mountains ringing Ban Na Hin grew darker as the light faded. I was sitting alone on the back porch of our guesthouse watching the light slowly disappear from the bottoms of the clouds and wondering absently how many pages it would take to explain how I came to be in the tiny town of Ban Na Hin, or if such an explanation even really existed. <a href="/2006/feb/10/water-slides-and-spirit-guides/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_water_slides, 'click', function() {
openWin(c_water_slides,marker_water_slides);
});
var marker_the_lovely = new google.maps.Marker({
position: new google.maps.LatLng(18.9254486207, 102.437553392),
map: map,
shadow: shadow,
icon: image
});
var c_the_lovely = '<div class="infowin"><h4>The Lovely Universe<\/h4><span class="date blok">February 4, 2006 (Vang Vieng, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/vangveing.jpg" height="100" alt="The Lovely Universe" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I would like to say that I have something memorable to write about Vang Vieng, but the truth is we mostly sat around doing very little, making new friends, drinking a beer around the fire and waiting out the Chinese new year celebrations, which meant none of us could get Cambodian visas until the following Monday. We were forced to relax beside the river for several more days than we intended. Yes friends, traveling is hard, but I do it for you. <a href="/2006/feb/04/lovely-universe/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_lovely, 'click', function() {
openWin(c_the_lovely,marker_the_lovely);
});
var marker_i_used = new google.maps.Marker({
position: new google.maps.LatLng(20.8536785547, 101.190948472),
map: map,
shadow: shadow,
icon: image
});
var c_i_used = '<div class="infowin"><h4>I Used to Fly Like Peter Pan<\/h4><span class="date blok">January 21, 2006 (Luang Nam Tha, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/gibbonexperience.jpg" height="100" alt="I Used to Fly Like Peter Pan" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The next time someone asks you, \u0026#8220\u003Bwould you like to live in a tree house and travel five hundred feet above the ground attached to a zip wire?\u0026#8221\u003B I highly suggest you say, \u0026#8220\u003Byes, where do a I sign up?\u0026#8221\u003B If you happen to be in Laos, try the Gibbon Experience. <a href="/2006/jan/21/i-used-fly-peter-pan/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_i_used, 'click', function() {
openWin(c_i_used,marker_i_used);
});
var marker_hymn_of = new google.maps.Marker({
position: new google.maps.LatLng(19.8274335101, 102.422790513),
map: map,
shadow: shadow,
icon: image
});
var c_hymn_of = '<div class="infowin"><h4>Hymn of the Big Wheel<\/h4><span class="date blok">January 19, 2006 (Luang Prabang, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/bluemilkwaterfall.jpg" height="100" alt="Hymn of the Big Wheel" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Jose Saramago writes in \u003Ccite\u003EThe Year of the Death of Ricardo Reis\u003C/cite\u003E that the gods \u0022journey like us in the river of things, differing from us only because we call them gods and sometimes believe in them.\u0022 Sitting in the middle of the river listening to the gurgle of water moving over stone and around trees I began to think that perhaps this is the sound of some lost language, a sound capable of creating mountains, valleys, estuaries, isthmuses and all the other forms around us, gurgling and sonorous but without clear meaning, shrouded in turquoise, a mystery through which we can move our sense of wonder intact. <a href="/2006/jan/19/hymn-big-wheel/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_hymn_of, 'click', function() {
openWin(c_hymn_of,marker_hymn_of);
});
var marker_down_the = new google.maps.Marker({
position: new google.maps.LatLng(19.8750644479, 102.131996141),
map: map,
shadow: shadow,
icon: image
});
var c_down_the = '<div class="infowin"><h4>Down the River<\/h4><span class="date blok">January 17, 2006 (Luang Prabang, Lao (PDR))<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/mekongslowboat.jpg" height="100" alt="Down the River" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Morning in Chiang Khong Thailand revealed itself as a foggy, and not a little mysterious, affair with the far shore of the Mekong, the Laos shore, almost completely hidden in a veil of mist. The first ferry crossed at eight and I was on it, looking to meet up with the slow boat to Luang Prabang. <a href="/2006/jan/17/down-river/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_down_the, 'click', function() {
openWin(c_down_the,marker_down_the);
});
var marker_the_king = new google.maps.Marker({
position: new google.maps.LatLng(19.3150313814, 98.8426208359),
map: map,
shadow: shadow,
icon: image
});
var c_the_king = '<div class="infowin"><h4>The King of Carrot Flowers<\/h4><span class="date blok">January 17, 2006 (Doi Inthanan National Park, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/maesaorchids.jpg" height="100" alt="The King of Carrot Flowers" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The light outside the windows was still a pre\u002Ddawn inky blue when the freezing cold water hit my back. A cold shower at six thirty in the morning is infinitely more powerful, albeit not at long lasting, as a cup of coffee. After dropping my body temperature a few degrees and having no towel to dry off with, just a dirty shirt and ceaseless ceiling fan, a cup of tea seemed like a good idea so I stopped in at the restaurant downstairs and, after a cup of hot water with some Jasmine leaves swirling at the bottom of it, I climbed on my rental motorbike and set out for Doi Inthanan National Park. <a href="/2006/jan/17/king-carrot-flowers/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_king, 'click', function() {
openWin(c_the_king,marker_the_king);
});
var marker_you_and = new google.maps.Marker({
position: new google.maps.LatLng(18.7870423436, 98.9876746994),
map: map,
shadow: shadow,
icon: image
});
var c_you_and = '<div class="infowin"><h4>You and I Are Disappearing<\/h4><span class="date blok">January 11, 2006 (Chang Mai, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/changmaiumong.jpg" height="100" alt="You and I Are Disappearing" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The all night bus reached Chiang Mai well past dawn, the city already beginning to stir. I considered trying to nap, but in the end decided to explore the town. What better way to see Buddhist temples than in the dreamy fog of sleeplessness? Chiang Mai has over three hundred wats within the somewhat sprawling city limits, most of them reasonably modern and, in my opinion, not worth visiting. I narrowed the field to three, which I figured was a nice round one percent. \u000D\u000A <a href="/2006/jan/11/you-and-i-are-disappearing/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_you_and, 'click', function() {
openWin(c_you_and,marker_you_and);
});
var marker_buddha_on = new google.maps.Marker({
position: new google.maps.LatLng(13.7261281265, 100.547304139),
map: map,
shadow: shadow,
icon: image
});
var c_buddha_on = '<div class="infowin"><h4>Buddha on the Bounty<\/h4><span class="date blok">January 5, 2006 (Bangkok, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/jimthompsonhouse.jpg" height="100" alt="Buddha on the Bounty" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The house Jim Thompson left behind in Bangkok is gorgeous, but the real charm is the garden and its orchids. I wandered around the gardens which really aren\u0027t that large for some time and then found a bench near a collection of orchids, where I sat for the better part of an hour, occasionally taking a photograph or two, but mostly thinking about how human orchids are. <a href="/2006/jan/05/buddha-bounty/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_buddha_on, 'click', function() {
openWin(c_buddha_on,marker_buddha_on);
});
var marker_brink_of = new google.maps.Marker({
position: new google.maps.LatLng(13.7509217796, 100.543141351),
map: map,
shadow: shadow,
icon: image
});
var c_brink_of = '<div class="infowin"><h4>Brink of the Clouds<\/h4><span class="date blok">January 3, 2006 (Bangkok, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/bangkokfrombaiyoke.jpg" height="100" alt="Brink of the Clouds" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>\u0022The city is a cathedral\u0022 writes James Salter, \u0022its scent is dreams.\u0022 Salter may have been referring to New York, but his words ring true in Bangkok. And the best place to feel it at night is on the river or from the top of the Baiyoke Sky Hotel \u0026mdash\u003B where a circular, revolving observation deck offers 360\u0026deg\u003B views of the Bangkok nightscape. <a href="/2006/jan/03/brink-clouds/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_brink_of, 'click', function() {
openWin(c_brink_of,marker_brink_of);
});
var marker_are_you = new google.maps.Marker({
position: new google.maps.LatLng(13.7617909731, 100.493445382),
map: map,
shadow: shadow,
icon: image
});
var c_are_you = '<div class="infowin"><h4>Are You Amplified to Rock?<\/h4><span class="date blok">January 1, 2006 (Bangkok, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/bangkokriver.jpg" height="100" alt="Are You Amplified to Rock?" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>It\u0027s a new year, are you amplified to rock? Ready, set, go. <a href="/2006/jan/01/are-you-amplified-rock/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_are_you, 'click', function() {
openWin(c_are_you,marker_are_you);
});
var marker_merry_christmas = new google.maps.Marker({
position: new google.maps.LatLng(13.7617909731, 100.493445382),
map: map,
shadow: shadow,
icon: image
});
var c_merry_christmas = '<div class="infowin"><h4>Merry Christmas 2005<\/h4><span class="date blok">December 25, 2005 (Bangkok, Thailand)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/bangkokfort.jpg" height="100" alt="Merry Christmas 2005" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Seasons Greeting from luxagraf. I\u0027m in Bangkok, Thailand at the moment. I am taking a short break from traveling to do a little working so I don\u0027t have much to report. I\u0027ve seen the two big temples down in the Khaosan Rd area, but otherwise I\u0027ve been trying to live an ordinary life in Bangkok, if such a thing is possible. <a href="/2005/dec/25/merry-christmas-2005/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_merry_christmas, 'click', function() {
openWin(c_merry_christmas,marker_merry_christmas);
});
var marker_sunset_over = new google.maps.Marker({
position: new google.maps.LatLng(28.2104827779, 83.9582061651),
map: map,
shadow: shadow,
icon: image
});
var c_sunset_over = '<div class="infowin"><h4>Sunset Over the Himalayas<\/h4><span class="date blok">December 17, 2005 (Pokhara, Nepal)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/pokharaboat.jpg" height="100" alt="Sunset Over the Himalayas" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>After about forty\u002Dfive minutes of paddling I reached a point where the views of the Annapurna range were, in the words of an Englishman I met in Katmandu, \u0022gob smacking gorgeous.\u0022 I put down the paddle and moved to the center of the boat where the benches were wider and, using my bag a cushion, lay back against the gunwale and hung my feet over the opposite side so that they just skimmed the surface of the chilly water. <a href="/2005/dec/17/sunset-over-himalayas/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_sunset_over, 'click', function() {
openWin(c_sunset_over,marker_sunset_over);
});
var marker_pashupatinath = new google.maps.Marker({
position: new google.maps.LatLng(27.7105731557, 85.3485345722),
map: map,
shadow: shadow,
icon: image
});
var c_pashupatinath = '<div class="infowin"><h4>Pashupatinath<\/h4><span class="date blok">December 15, 2005 (Pashupatinath, Nepal)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/nepalburninggahts.jpg" height="100" alt="Pashupatinath" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Nestled on a hillside beside the Bagmati River, Pashupatinath is one of the holiest sites in the world for Hindus, second only to Varanasi in India. Pashupatinath consists of a large temple which is open only to Hindus, surrounded by a number of smaller shrines and then down on the banks of the Bagmati are the burning ghats where bodies are cremated. <a href="/2005/dec/15/pashupatinath/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_pashupatinath, 'click', function() {
openWin(c_pashupatinath,marker_pashupatinath);
});
var marker_durbar_square = new google.maps.Marker({
position: new google.maps.LatLng(27.7033636906, 85.3173780323),
map: map,
shadow: shadow,
icon: image
});
var c_durbar_square = '<div class="infowin"><h4>Durbar Square Kathmandu<\/h4><span class="date blok">December 15, 2005 (Kathmandu, Nepal)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/durbarsquare.jpg" height="100" alt="Durbar Square Kathmandu" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>After saturating myself with the streets of Thamel I went on a longer excursion down to Durbar Square to see the various pagodas, temples and the old palace. The palace itself no longer houses the King, but is still used for coronations and ceremonies and Durbar Square is still very much the hub of Katmandu. <a href="/2005/dec/15/durbar-square-kathmandu/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_durbar_square, 'click', function() {
openWin(c_durbar_square,marker_durbar_square);
});
var marker_goodbye_india = new google.maps.Marker({
position: new google.maps.LatLng(28.6418241967, 77.2109269988),
map: map,
shadow: shadow,
icon: image
});
var c_goodbye_india = '<div class="infowin"><h4>Goodbye India<\/h4><span class="date blok">December 10, 2005 (Delhi, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/indiadelhi.jpg" height="100" alt="Goodbye India" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I have taken almost 750 photos and traveled nearly 4000 km (2500 miles) in India, the vast majority of it by train. I have seen everything from depressing squalor to majestic palaces and yet I still feel as if I have hardly scratched the surface. I can\u0027t think of another and certainly have never been to a country with the kind of geographic and ethnic diversity of India. <a href="/2005/dec/10/goodbye-india/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_goodbye_india, 'click', function() {
openWin(c_goodbye_india,marker_goodbye_india);
});
var marker_the_taj = new google.maps.Marker({
position: new google.maps.LatLng(27.1728040126, 78.0417680632),
map: map,
shadow: shadow,
icon: image
});
var c_the_taj = '<div class="infowin"><h4>The Taj Express<\/h4><span class="date blok">December 9, 2005 (Agra, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/tajmahal.jpg" height="100" alt="The Taj Express" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The Taj Mahal is one of the Seven Wonders of the World, and, given the level of hype I was fully prepared to be underwhelmed, but I was wrong. I have never in my life seen anything so extravagant, elegant and colossal. The Taj Mahal seems mythically, spiritually, as well as architecturally, to have risen from nowhere, without equal or context. <a href="/2005/dec/09/taj-express/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_taj, 'click', function() {
openWin(c_the_taj,marker_the_taj);
});
var marker_on_a = new google.maps.Marker({
position: new google.maps.LatLng(27.0040787606, 70.8906555077),
map: map,
shadow: shadow,
icon: image
});
var c_on_a = '<div class="infowin"><h4>On a Camel With No Name<\/h4><span class="date blok">December 5, 2005 (Thar Desert, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/cameltrek.jpg" height="100" alt="On a Camel With No Name" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The Thar Desert is a bewitching if stark place. It reminded me of areas of the Great Basin between Las Vegas and St. George, Utah. Twigging mesquite\u002Dlike trees, bluish gray bushes resembling creosote, a very large bush that resembled a Palo Verde tree and grew in impenetrable clumps, and, strangely, only one species of cactus and not a whole lot of them. <a href="/2005/dec/05/camel-no-name/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_on_a, 'click', function() {
openWin(c_on_a,marker_on_a);
});
var marker_the_majestic = new google.maps.Marker({
position: new google.maps.LatLng(26.2974163535, 73.0176687139),
map: map,
shadow: shadow,
icon: image
});
var c_the_majestic = '<div class="infowin"><h4>The Majestic Fort<\/h4><span class="date blok">December 2, 2005 (Jodhpur, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/jodhpurfort.jpg" height="100" alt="The Majestic Fort" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The next day I hopped in a rickshaw and headed up to tour Meherangarh, or the Majestic Fort as it\u0027s known in English. As its English name indicates, it is indeed perched majestically atop the only hill around, and seems not so much built on a hill as to have naturally risen out the very rocks that form the mesa on which it rests. The outer wall encloses some of the sturdiest and most impressive ramparts I\u0027ve seen in India or anywhere else. <a href="/2005/dec/02/majestic-fort/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_majestic, 'click', function() {
openWin(c_the_majestic,marker_the_majestic);
});
var marker_around_udaipur = new google.maps.Marker({
position: new google.maps.LatLng(24.6676103687, 73.7848663227),
map: map,
shadow: shadow,
icon: image
});
var c_around_udaipur = '<div class="infowin"><h4>Around Udaipur<\/h4><span class="date blok">November 30, 2005 (Udiapur, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/shiplogram.jpg" height="100" alt="Around Udaipur" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Just out of Udaipur is a government sponsored \u0022artist colony\u0022 for various cultures from the five nearby states, Rajasthan, Gujarat, Karnataka, Goa and Madhya Pradesh. On one hand Shilpogram is a wonderful idea on the part of the government, but on the other hand the \u0022artists colony\u0022 is slightly creepy. Amidst displays of typical tribal life there were artists and craftsmen and women hawking their wares along with dancers and musicians performing traditional songs. The whole thing had the feel of a living museum, or, for the creepy angle \u0026mdash\u003B human zoo. <a href="/2005/nov/30/around-udaipur/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_around_udaipur, 'click', function() {
openWin(c_around_udaipur,marker_around_udaipur);
});
var marker_the_monsoon = new google.maps.Marker({
position: new google.maps.LatLng(24.6619943759, 73.6880493061),
map: map,
shadow: shadow,
icon: image
});
var c_the_monsoon = '<div class="infowin"><h4>The Monsoon Palace<\/h4><span class="date blok">November 29, 2005 (Udiapur, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/monsoonpalace.jpg" height="100" alt="The Monsoon Palace" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>We started out in the early evening quickly leaving behind Udaipur and its increasing urban sprawl. The road to the Monsoon Palace passes through the Sajjan Garh Nature Preserve and there was a sudden and dramatic drop in temperature, but then the road climbed out of the hollow and the temperature jumped back up to comfortable as we began to climb the mountain in a series of hairpin switchbacks. As the sun slowly slunk behind the mountain range to the west the balconies and balustrades of the Monsoon Palace took on an increasingly orange hue. <a href="/2005/nov/29/monsoon-palace/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_monsoon, 'click', function() {
openWin(c_the_monsoon,marker_the_monsoon);
});
var marker_the_city = new google.maps.Marker({
position: new google.maps.LatLng(24.5913048792, 73.6931991475),
map: map,
shadow: shadow,
icon: image
});
var c_the_city = '<div class="infowin"><h4>The City Palace<\/h4><span class="date blok">November 28, 2005 (Udiapur, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/citypalaceudaipur.jpg" height="100" alt="The City Palace" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I spent some time sitting in the inner gardens of the City Place, listening to rustling trees and the various guides bringing small groups of western and Indian tourists through the garden. In the center of the hanging gardens was the kings, extremely oversized bath, which reminded me of children\u0027s book that I once gave to a friend\u0027s daughter\u003B it was a massively oversized and lavishly illustrated book that told the story of a king who refused to get out of the bath and instead made his ministers, advisors, cooks and even his wife conduct business by getting in the bath with him. <a href="/2005/nov/28/city-palace/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_city, 'click', function() {
openWin(c_the_city,marker_the_city);
});
var marker_living_in = new google.maps.Marker({
position: new google.maps.LatLng(23.0096752856, 72.5623798269),
map: map,
shadow: shadow,
icon: image
});
var c_living_in = '<div class="infowin"><h4>Living in Airport Terminals<\/h4><span class="date blok">November 27, 2005 (Ahmedabad, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/ceilingfanindia.jpg" height="100" alt="Living in Airport Terminals" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Airport terminals are fast becoming my favorite part of traveling. When you stop and observe them closely as I have been forced to do on this trip, terminals are actually quite beautiful weird places. Terminals inhabit a unique space in the architecture of humanity, perhaps the strangest of all spaces we have created\u003B a space that is itself only a boundary that delineates the border between what was and what will be without leaving any space at all for what is. <a href="/2005/nov/27/living-airport-terminals/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_living_in, 'click', function() {
openWin(c_living_in,marker_living_in);
});
var marker_anjuna_market = new google.maps.Marker({
position: new google.maps.LatLng(15.5812894729, 73.7388610737),
map: map,
shadow: shadow,
icon: image
});
var c_anjuna_market = '<div class="infowin"><h4>Anjuna Market<\/h4><span class="date blok">November 23, 2005 (Anjuna Beach, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/anjunabeachmarket.jpg" height="100" alt="Anjuna Market" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Earlier today I caught a bus up to the Anjuna Flea Market and can now tell you for certain that old hippies do not die, they simply move to Goa. The flea market was quite a spectacle\u003B riots of color at every turn and more silver jewelry than you could shake a stick at. <a href="/2005/nov/23/anjuna-market/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_anjuna_market, 'click', function() {
openWin(c_anjuna_market,marker_anjuna_market);
});
var marker_fish_story = new google.maps.Marker({
position: new google.maps.LatLng(15.2772302271, 73.9154147999),
map: map,
shadow: shadow,
icon: image
});
var c_fish_story = '<div class="infowin"><h4>Fish Story<\/h4><span class="date blok">November 19, 2005 (Colva Beach, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/colvabeach.jpg" height="100" alt="Fish Story" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The Arabian Sea is warm and the sand sucks at your feet when you walk, schools of tiny fish dart and disappear into each receding wave. In the morning the water is nearly glassy and the beach slopes off so slowly one can walk out at least 200 meters and be only waist deep. <a href="/2005/nov/19/fish-story/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_fish_story, 'click', function() {
openWin(c_fish_story,marker_fish_story);
});
var marker_the_backwaters = new google.maps.Marker({
position: new google.maps.LatLng(9.95802997096, 76.253356923),
map: map,
shadow: shadow,
icon: image
});
var c_the_backwaters = '<div class="infowin"><h4>The Backwaters of Kerala<\/h4><span class="date blok">November 14, 2005 (Kerala Backwaters, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/keralabackwater.jpg" height="100" alt="The Backwaters of Kerala" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The guide showed us Tamarind trees, coconut palms, lemon trees, vanilla vine, plantain trees and countless other shrubs and bushes whose names I have already forgotten. The most fascinating was a plant that produces a fruit something like a miniature mango that contains cyanide and which, as our guide informed us, is cultivated mainly to commit suicide with \u0026mdash\u003B as if it was no big deal and everyone is at least occasionally tempted to each the killer mango. <a href="/2005/nov/14/backwaters-kerala/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_backwaters, 'click', function() {
openWin(c_the_backwaters,marker_the_backwaters);
});
var marker_vasco_de = new google.maps.Marker({
position: new google.maps.LatLng(9.96437023104, 76.2409114732),
map: map,
shadow: shadow,
icon: image
});
var c_vasco_de = '<div class="infowin"><h4>Vasco de Gama Exhumed<\/h4><span class="date blok">November 10, 2005 (Fort Kochi, India)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/fortcochin.jpg" height="100" alt="Vasco de Gama Exhumed" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Fort Cochin is curious collision of cultures \u0026mdash\u003B Chinese, India and even Portuguese. Many of the obviously older buildings are of a distinctly Iberian\u002Dstyle \u0026mdash\u003B moss covered, adobe\u002Dcolored arches abound. There is graveyard just down the road with a tombstone that bears the name Vasco de Gama, who died and was buried here for fourteen years before being moved to Lisbon (there we go again, more Europeans digging up and moving the dead). <a href="/2005/nov/10/vasco-de-gama-exhumed/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_vasco_de, 'click', function() {
openWin(c_vasco_de,marker_vasco_de);
});
var marker_riots_iraqi = new google.maps.Marker({
position: new google.maps.LatLng(48.863514908, 2.36107349363),
map: map,
shadow: shadow,
icon: image
});
var c_riots_iraqi = '<div class="infowin"><h4>Riots, Iraqi Restaurants, Goodbye Seine<\/h4><span class="date blok">November 8, 2005 (Paris, France)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/republique.jpg" height="100" alt="Riots, Iraqi Restaurants, Goodbye Seine" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Well it\u0027s my last night here in Paris and I\u0027ve chosen to return to the best restaurant we\u0027ve been to so far, an Iraqi restaurant in a Marais. I am using all my willpower right now to avoid having a political outburst re the quality of Iraqi food versus the intelligence of George Bush etc etc. I\u0027m traveling\u003B I don\u0027t want to get into politics except to say that my dislike for the current El Presidente was no small factor in my decision to go abroad. <a href="/2005/nov/08/riots-iraqi-restaurants-goodbye-seine/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_riots_iraqi, 'click', function() {
openWin(c_riots_iraqi,marker_riots_iraqi);
});
var marker_bury_your = new google.maps.Marker({
position: new google.maps.LatLng(48.8862365662, 2.34375715223),
map: map,
shadow: shadow,
icon: image
});
var c_bury_your = '<div class="infowin"><h4>Bury Your Dead<\/h4><span class="date blok">November 6, 2005 (Paris, France)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/pariscatacombs.jpg" height="100" alt="Bury Your Dead" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I would like to say that the catacombs of Paris had some spectacular effect on me seeing that I strolled through human remains, skulls and femurs mainly, \u0022decoratively arranged,\u0022 but the truth is, after you get over the initial shock of seeing a skull, well, it turns out you can get adjusted to just about anything. Maybe that in and off itself is the scary part. <a href="/2005/nov/06/bury-your-dead/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_bury_your, 'click', function() {
openWin(c_bury_your,marker_bury_your);
});
var marker_the_houses = new google.maps.Marker({
position: new google.maps.LatLng(48.8640936621, 2.36156702009),
map: map,
shadow: shadow,
icon: image
});
var c_the_houses = '<div class="infowin"><h4>The Houses We Live In<\/h4><span class="date blok">November 1, 2005 (Paris, France)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/pariscityscape.jpg" height="100" alt="The Houses We Live In" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I\u0027ve been thinking the last couple of days about something Bill\u0027s dad said to me before I left. I\u0027m paraphrasing here since I don\u0027t remember the exact phrasing he used, but something to the effect of \u0022people are essentially the same everywhere, they just build their houses differently.\u0022 Indeed, Parisian architecture is completely unlike anything in America. Perhaps more than any other single element, architecture reflects culture and the ideas of the people that make up culture. <a href="/2005/nov/01/houses-we-live/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_houses, 'click', function() {
openWin(c_the_houses,marker_the_houses);
});
var marker_sainte_chapelle = new google.maps.Marker({
position: new google.maps.LatLng(48.8555669485, 2.34525918928),
map: map,
shadow: shadow,
icon: image
});
var c_sainte_chapelle = '<div class="infowin"><h4>Sainte Chapelle<\/h4><span class="date blok">October 28, 2005 (Paris, France)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/saintechapelle.jpg" height="100" alt="Sainte Chapelle" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Sainte Chapelle was interesting to see after the modern, conceptual art stuff at the Pompidou, rather than simple stained glass, Sainte Chapelle felt quite conceptual. In a sense the entire Bible (i.e. all history from that perspective) is unfolding simultaneously, quite a so\u002Dcalled post\u002Dmodern idea if you think about it. And yet it was conceived and executed over 800 years ago. Kind of kicks a lot pretentious modern art in its collective ass. <a href="/2005/oct/28/sainte-chapelle/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_sainte_chapelle, 'click', function() {
openWin(c_sainte_chapelle,marker_sainte_chapelle);
});
var marker_living_in = new google.maps.Marker({
position: new google.maps.LatLng(48.8641642414, 2.36178159681),
map: map,
shadow: shadow,
icon: image
});
var c_living_in = '<div class="infowin"><h4>Living in a Railway Car<\/h4><span class="date blok">October 24, 2005 (Paris, France)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/letour.jpg" height="100" alt="Living in a Railway Car" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>This French apartment is more like a railway sleeper car than apartment proper. Maybe fifteen feet long and only three feet wide at the ceiling. More like five feet wide at the floor, but, because it\u0027s an attic, the outer wall slopes in and you lose two feet by the time you get to the ceiling. It\u0027s narrow enough that you can\u0027t pass another body when you walk to length of it. <a href="/2005/oct/24/living-railway-car/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_living_in, 'click', function() {
openWin(c_living_in,marker_living_in);
});
var marker_twenty_more = new google.maps.Marker({
position: new google.maps.LatLng(33.6333266453, -117.903020366),
map: map,
shadow: shadow,
icon: image
});
var c_twenty_more = '<div class="infowin"><h4>Twenty More Minutes to Go<\/h4><span class="date blok">October 20, 2005 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/nightswings.jpg" height="100" alt="Twenty More Minutes to Go" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Well it\u0027s the night before I leave. I just got done pacing around the driveway of my parents house smoking cigarettes\u0026#8230\u003B nervously? Excitedly? Restlessly? A bit of all of those I suppose. I walk across the street, over the drainage ditch and head for the swing set at the park. Right now I\u0027m swinging in a park in Costa Mesa California. Tomorrow France. Weird. [Photo to the right, \u003Ca href\u003D\u0022http://www.flickr.com/photos/scarin/53961434/\u0022\u003Evia Flickr\u003C/a\u003E] <a href="/2005/oct/20/twenty-more-minutes-go/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_twenty_more, 'click', function() {
openWin(c_twenty_more,marker_twenty_more);
});
var marker_travel_tips = new google.maps.Marker({
position: new google.maps.LatLng(33.6320939072, -117.901239379),
map: map,
shadow: shadow,
icon: image
});
var c_travel_tips = '<div class="infowin"><h4>Travel Tips and Resources<\/h4><span class="date blok">October 19, 2005 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/travelgear.jpg" height="100" alt="Travel Tips and Resources" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>An overview of the things you might want to bring on an extended trip, as well as some tips and recommendations on things like visas and vaccinations. The part that was most helpful for me was learning what I \u003Cem\u003Edidn\u0027t\u003C/em\u003E need to bring \u0026mdash\u003B as it turns out, quite a bit. Nowadays my pack is much smaller and lighter. <a href="/2005/oct/19/tips-and-resources/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_travel_tips, 'click', function() {
openWin(c_travel_tips,marker_travel_tips);
});
var marker_the_new = new google.maps.Marker({
position: new google.maps.LatLng(33.6321475049, -117.901067717),
map: map,
shadow: shadow,
icon: image
});
var c_the_new = '<div class="infowin"><h4>The New Luddites<\/h4><span class="date blok">October 8, 2005 (Los Angeles, California)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/books.jpg" height="100" alt="The New Luddites" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>An older, non\u002Dtravel piece about Google\u0027s plan to scan all the world\u0027s books and Luddite\u002Dlike response from many authors. Let\u0027s see, someone wants to make your book easier to find, searchable and indexable and you\u0027re opposed to it? You\u0027re a fucking idiot. <a href="/2005/oct/08/new-luddites/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_new, 'click', function() {
openWin(c_the_new,marker_the_new);
});
var marker_one_nation = new google.maps.Marker({
position: new google.maps.LatLng(42.3225404908, -72.6280403036),
map: map,
shadow: shadow,
icon: image
});
var c_one_nation = '<div class="infowin"><h4>One Nation Under a Groove<\/h4><span class="date blok">March 25, 2005 (Northampton, Massachusetts)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/ipod.jpg" height="100" alt="One Nation Under a Groove" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>The sky is falling! The iPod! It\u0027s ruining our culture! Or, uh, maybe it\u0027s just like the Walkman, but better. And since, so far as I can tell, the world did not collapse with the introduction of the Walkman and headphones, it probably isn\u0027t going to fall apart just because the storage format for our music has changed. [Photo to the right via \u003Ca href\u003D\u0022http://flickr.com/photos/rogpool/2960735485/\u0022\u003EFlickr\u003C/a\u003E] <a href="/2005/mar/25/one-nation-under-groove/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_one_nation, 'click', function() {
openWin(c_one_nation,marker_one_nation);
});
var marker_farewell_mr = new google.maps.Marker({
position: new google.maps.LatLng(42.3226356812, -72.6279544729),
map: map,
shadow: shadow,
icon: image
});
var c_farewell_mr = '<div class="infowin"><h4>Farewell Mr. Hunter S Thompson<\/h4><span class="date blok">February 24, 2005 (Northampton, Massachusetts)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/thompson.jpg" height="100" alt="Farewell Mr. Hunter S Thompson" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Hunter S. Thompson departs on a journey to the western lands. Thompson\u0027s \u003Cem\u003EFear and Loathing in Las Vegas\u003C/em\u003E delivered the penultimate eulogy for the dreams of the 1960\u0027s, one that mourned, but also tried to lay the empty idealism to rest. <a href="/2005/feb/24/farewell-mr-hunter-s-thompson/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_farewell_mr, 'click', function() {
openWin(c_farewell_mr,marker_farewell_mr);
});
var marker_the_art = new google.maps.Marker({
position: new google.maps.LatLng(42.3224770304, -72.628340711),
map: map,
shadow: shadow,
icon: image
});
var c_the_art = '<div class="infowin"><h4>The Art of the Essay<\/h4><span class="date blok">October 10, 2004 (Northampton, Massachusetts)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/essay.jpg" height="100" alt="The Art of the Essay" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>I generally ignore internet debates, they never go anywhere, so why bother. But we all have our weak points and when programmer Paul Graham posted what might be the dumbest essay on writing that\u0027s ever been written, I just couldn\u0027t help myuself. <a href="/2004/oct/10/art-essay/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_the_art, 'click', function() {
openWin(c_the_art,marker_the_art);
});
var marker_farewell_mr = new google.maps.Marker({
position: new google.maps.LatLng(42.3225087606, -72.6280403036),
map: map,
shadow: shadow,
icon: image
});
var c_farewell_mr = '<div class="infowin"><h4>Farewell Mr. Cash<\/h4><span class="date blok">September 12, 2003 (Northampton, Massachusetts)<\/span><p><img src="http://images.luxagraf.net/post-thumbs/2008/cash.jpg" height="100" alt="Farewell Mr. Cash" style="float: left; border: #000 10px solid; margin-right: 8px; margin-bottom: 4px; height: 100px;" \/>Johnny Cash heads for the western lands. <a href="/2003/sep/12/farewell-mr-cash/">Read it »<\/a><\/p><\/div>';
google.maps.event.addListener(marker_farewell_mr, 'click', function() {
openWin(c_farewell_mr,marker_farewell_mr);
});
// create an empty info window instance, set max width
var infowindow = new google.maps.InfoWindow({
content: ' ',
maxWidth: 400
});
//function to handle click event and display single info window
function openWin(content, marker) {
infowindow.close();
infowindow.setContent(content);
infowindow.open(map,marker);
};
}
|