forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_time2.html
More file actions
1394 lines (1074 loc) · 72.8 KB
/
Copy pathtest_time2.html
File metadata and controls
1394 lines (1074 loc) · 72.8 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--[if lt IE 7 ]>
<html class="ie6" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://developers.facebook.com/schema/" xmlns:og="http://opengraphprotocol.org/schema/">
<![endif]-->
<!--[if IE 7 ]>
<html class="ie7" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://developers.facebook.com/schema/" xmlns:og="http://opengraphprotocol.org/schema/">
<![endif]-->
<!--[if IE 8 ]>
<html class="ie8" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://developers.facebook.com/schema/" xmlns:og="http://opengraphprotocol.org/schema/">
<![endif]-->
<!--[if IE 9 ]>
<html class="ie9" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://developers.facebook.com/schema/" xmlns:og="http://opengraphprotocol.org/schema/">
<![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://developers.facebook.com/schema/" xmlns:og="http://opengraphprotocol.org/schema/">
<!--<![endif]-->
<!--
generated 135 seconds ago
generated in 0.309 seconds
served from batcache in 0.003 seconds
expires in 165 seconds
-->
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="google-site-verification" content="U7OX9IjuXnaDf-CoTeQzJwWanr44JrFSBJt044vng_0" />
<link rel="stylesheet" href="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/style.css?m=1312569218g" type="text/css" media="screen" />
<link rel="stylesheet" href="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/new.css?m=1312496087g" type="text/css" media="all" />
<link rel="pingback" href="http://newsfeed.time.com/xmlrpc.php" />
<!-- META Tags added by Add-Meta-Tags WordPress plugin. Get it at: http://www.g-loaded.eu/ -->
<meta name="description" content="Despite what the jeers of jaded Californians might suggest, toppled lawn chairs weren't actually the worst of the damage from Tuesday's earthquake that rattled the East Coast. The Washington Monument developed a crack near its peak from the magnitude-5." />
<meta name="keywords" content="nation, u.s., crack, damage, earthquake, nation, obelisk, virginia earthquake, washington dc, washington monument" />
<script src='http://wordpress.com/remote-login.php?action=js&host=newsfeed.time.com&id=12783068&t=1314226435&back=newsfeed.time.com%2F2011%2F08%2F24%2Fwashington-monument-closes-to-repair-earthquake-induced-crack%2F' type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */
if ( 'function' === typeof WPRemoteLogin ) {
document.cookie = "wordpress_test_cookie=test; path=/";
if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
WPRemoteLogin();
}
}
/* ]]> */
</script>
<link rel="alternate" type="application/rss+xml" title="NewsFeed » Washington Monument Closes to Repair Earthquake-Induced Crack Comments Feed" href="http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/feed/" />
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func){var oldonload=window.onload;if(typeof window.onload!='function'){window.onload=func;}else{window.onload=function(){oldonload();func();}}}
/* ]]> */
</script>
<link rel="stylesheet" href="http://s0.wp.com/wp-content/themes/h4/global.css?m=1313010128g" type="text/css" />
<link rel='stylesheet' id='post-reactions-css' href='http://s1.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313457037g&ver=3' type='text/css' media='all' />
<script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1306159894g&ver=1.6.1'></script>
<script type='text/javascript' src='http://img.timeinc.net/shared/static/js/tii_ads.js?ver=MU'></script>
<script type='text/javascript' src='http://js.adsonar.com/js/tw_adsonar.js?ver=MU'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var timevars = {"site_url":"http:\/\/timenewsfeed.wordpress.com","site_name":"NewsFeed"};
/* ]]> */
</script>
<script type='text/javascript' src='http://s0.wp.com/wp-content/themes/vip/timenewsfeed/js/main.js?m=1312496087g&ver=MU'></script>
<script type='text/javascript' src='http://img.timeinc.net/time/rd/trunk/www/web/feds/j/mobileExperience.js?ver=MU'></script>
<script type='text/javascript' src='http://s0.wp.com/wp-content/themes/vip/timenewsfeed/js/jquery.lazyload.mini.js?m=1306160022g&ver=MU'></script>
<script type='text/javascript' src='http://platform.twitter.com/widgets.js?ver=MU'></script>
<script type='text/javascript' src='http://platform.twitter.com/anywhere.js?id=jT2h05zHqMc4HbxIDpPvxA&v=1&ver=MU'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://timenewsfeed.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://timenewsfeed.wordpress.com/wp-includes/wlwmanifest.xml" />
<link rel='index' title='NewsFeed' href='http://newsfeed.time.com/' />
<link rel='prev' title='Google Doodle Honors Writer Jorge Luis Borges and His 'Forking Paths'' href='http://newsfeed.time.com/2011/08/24/google-doodle-honors-writer-jorge-luis-borges-and-his-forking-paths/' />
<link rel='next' title='Universal Scraps Plans For Its 'Ouija' Movie' href='http://newsfeed.time.com/2011/08/24/universal-scraps-plans-for-its-ouija-movie/' />
<meta name="generator" content="WordPress.com" />
<link rel='canonical' href='http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/' />
<link rel='shortlink' href='http://wp.me/pRDsw-nKs' />
<link rel="alternate" type="application/json+oembed" href="http://public-api.wordpress.com/oembed/1.0/?format=json&url=http%3A%2F%2Fnewsfeed.time.com%2F2011%2F08%2F24%2Fwashington-monument-closes-to-repair-earthquake-induced-crack%2F&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="http://public-api.wordpress.com/oembed/1.0/?format=xml&url=http%3A%2F%2Fnewsfeed.time.com%2F2011%2F08%2F24%2Fwashington-monument-closes-to-repair-earthquake-induced-crack%2F&for=wpcom-auto-discovery" /><link rel="shortcut icon" type="image/x-icon" href="http://1.gravatar.com/blavatar/de038c9fc06774c15706fda5010eb7cb?s=16" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="http://1.gravatar.com/blavatar/de038c9fc06774c15706fda5010eb7cb?s=16" sizes="16x16" />
<link rel="apple-touch-icon-precomposed" href="http://0.gravatar.com/blavatar/660b5acc12da887f6af2ab32079bd487?s=114" />
<link rel='openid.server' href='http://timenewsfeed.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='http://timenewsfeed.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="http://newsfeed.time.com/osd.xml" title="NewsFeed" />
<link rel="search" type="application/opensearchdescription+xml" href="http://wordpress.com/opensearch.xml" title="WordPress.com" />
<style type="text/css">
/* <![CDATA[ */
/* ]]> */
</style>
<link rel="stylesheet" href="http://disqus.com/stylesheets/newsfeed/disqus.css?v=2.0" type="text/css" media="screen" /> <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<script type="text/javascript" language="javascript">
var adFactory = new TiiAdFactory(adConfig, "newsfeed");
adFactory.setParam('ptype', "blogs");
adFactory.setParam('cont', "91292");
adFactory.setParam('ctype', "article");
adFactory.setChannel("");
adFactory.setChannel("");
adFactory.setParam('cont', "Crack");
adFactory.setParam('cont', "damage");
adFactory.setParam('cont', "earthquake");
adFactory.setParam('cont', "nation");
adFactory.setParam('cont', "obelisk");
adFactory.setParam('cont', "virginiaearthquake");
adFactory.setParam('cont', "washingtondc");
adFactory.setParam('cont', "washingtonmonument");
adFactory.setParam('subj', "Nation");
adFactory.setParam('subj', "U.S.");
</script>
<title>Washington Monument Closes to Repair Earthquake-Induced Crack - TIME NewsFeed</title>
<meta name="keywords" content="Crack, damage, earthquake, nation, obelisk, virginia earthquake, washington dc, washington monument" />
<meta name="description" content="Despite what the jeers of jaded Californians might suggest, toppled lawn chairs weren't actually the worst of the damage from Tuesday's earthquake that rattled the East Coast. The Washington Monument developed a crack near its peak from the magnitude-5.8 quake, prompting officials to close the statue indefinitely as they examine the extent of the damage. A helicopter [...]" />
<meta property="og:site_name" content="TIME.com" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Washington Monument Closes to Repair Earthquake-Induced Crack - TIME NewsFeed" />
<meta property="og:url" content="http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/" />
<meta property="fb:admins" content="1124331582,500054654,220400,512158401,808970553,1502271052" />
<meta property="fb:app_id" content="124906620858776" />
<meta property="og:image" content="http://timenewsfeed.files.wordpress.com/2011/08/newsfeed_0824.jpg?w=150" /> <script type="text/javascript">
jQuery(function($) {
$('.wp-post-image').lazyload({ effect : "fadeIn" });
});
</script>
<meta name="application-name" content="NewsFeed" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Breaking news and updates from Time.com. News pictures, video, Twitter trends." /><meta name="msapplication-task" content="name=Subscribe;action-uri=http://newsfeed.time.com/feed/;icon-uri=http://1.gravatar.com/blavatar/de038c9fc06774c15706fda5010eb7cb?s=16" /><!-- Page Refresh -->
<!-- END Page Refresh -->
</head>
<body class="single single-post postid-91292 single-format-standard typekit-enabled">
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId: "124906620858776",
cookie: true, // these two are not required for partners that
status: true, // only rely on stk plugins and don't use connect
xfbml: true
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<div id="omniture" style="display:none;">
<script type="text/javascript">var s_account="timecom";</script>
<script type="text/javascript" src="http://img.timeinc.net/tii/omniture/h/common.js"></script>
<script type="text/javascript" src="http://img.timeinc.net/tii/omniture/h/config/time.js"></script>
<script type="text/javascript">
s_time.channel = 'time';
s_time.pageName = 'newsfeed|article|Washington Monument Closes to Repair Earthquake-Induced Crack';
s_time.prop6 = 'world';
s_time.prop5 = 'world: world, general';
s_time.prop7 = 'blog';
s_time.prop11 = 'newsfeed';
s_time.prop16 = 'newsfeed';
s_time.prop26 = '2011-08-24 14:00:30|newsfeed|article|Washington Monument Closes to Repair Earthquake-Induced Crack';
s_time.prop28 = 'Jared T. Miller';
s_time.prop17 = location.href;
if (typeof(omnitureHookFunction) == "function") eval("omnitureHookFunction();");
var s_code=s_time.t();if(s_code)document.write(s_code);
</script>
</div>
<div class="wrap" id="home">
<!--[if IE 5]> Vignette StoryServer 5.0 Tue Aug 16 18:00:28 2011 <![endif]-->
<!--[if IE 5]> Vignette StoryServer 5.0 Wed Aug 24 18:06:56 2011 <![endif]-->
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script> <div id="header-new">
<div id="nav-top" role="navigation">
<ul id="nav">
<li ><a title="" href="http://www.time.com/time/">Home</a></li>
<li ><a title="TIME Magazine - US edition - TIME.com" href="http://www.time.com/time/magazine">TIME Magazine</a></li>
<li ><a title="Photos, Slideshows, Galleries, Photoessays - TIME.com" href="http://lightbox.time.com/">Photos</a></li>
<li ><a title="" href="http://www.time.com/time/video/">Videos</a></li>
<li ><a title="Best and Worst Lists - TIME.com" href="http://www.time.com/time/specials">Specials</a></li>
<li ><a title="" href="https://subscription.time.com/storefront/subscribe-to-time/link/1004495.html">Subscribe</a></li>
</ul>
<ul id="connection-nav">
<li class="app"><a title="GET TIME MOBILE APP" href="http://www.time.com/time/mobile">Mobile Apps</a></li>
<li class="nwslttr"><a title="Newsletter" href="http://ebm.cheetahmail.com/r/regf2?a=0&aid=1078532063&n=1&TIME_SOURCE=header_tout" target="_blank">Newsletters</a></li>
<li class="rss"><a title="RSS" href="http://www.time.com/time/rss">RSS</a></li>
<li class="twttr"><a title="Follow Us On Twitter" target="_blank" href="http://twitter.com/time">@TIME</a></li>
<li class="fb"><fb:like href="http://facebook.com/time" send="false" layout="button_count" width="90" show_faces="false" font=""></fb:like></li>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
</ul>
</div>
<div id="vertical-nav" role="navigation">
<ul>
<li class="sel"><a title="NewsFeed" href="http://newsfeed.time.com/">NewsFeed</a></li>
<li ><a title="U.S. News - Headlines, Stories and Video from around nation - TIME.com" href="http://www.time.com/time/nation">U.S.</a></li>
<li ><a title="Political insight from the Beltway and beyond" href="http://swampland.time.com/">Politics</a></li>
<li ><a title="World News, International Headlines, Stories, Slideshows and Video - TIME.com" href="http://www.time.com/time/world">World</a></li>
<li ><a title="Business and Technology News - TIME.com" href="http://www.time.com/time/business">Business</a></li>
<li ><a title="Moneyland | Financial insights from your wallet to Wall Street" href="http://moneyland.time.com">Money</a></li>
<li ><a title="" href="http://techland.com">Tech</a></li>
<li ><a title="Health, Science, Medicine, Fitness News - TIME.com" href="http://healthland.time.com/">Health</a></li>
<li ><a title="" href="http://www.time.com/time/science">Science</a></li>
<li ><a title="Reviews, Music, Books Arts, Entertainment News -TIME.com" href="http://www.time.com/time/arts/">Entertainment</a></li>
</ul>
</div>
</div> <!-- /div#header -->
<!--[if IE 5]> Vignette StoryServer 5.0 Tue Aug 16 19:04:02 2011 <![endif]-->
<div id="header-sub" class="clearfix">
<div class="logo">
<a href="http://www.time.com/time"><img src="http://img.timeinc.net/time/rd/trunk/www/web/feds/i/logo-time-horiz-white.png" height="37" width="120" alt="TIME" title="TIME" id="time-logo" /></a>
<a href="http://newsfeed.time.com/"><img src="http://img.timeinc.net/time/2011/graphics/headers/newsfeed.gif" height="65" width="307" alt="TIME.com - NewsFeed" title="TIME.com - NewsFeed" id="channel-logo" /></a>
</div>
<!--[if IE 5]> Vignette StoryServer 5.0 Tue Jul 05 17:37:01 2011 <![endif]-->
<div class="search">
<table>
<tbody>
<tr>
<td class="headerAdTd">
<div class="ad88">
<script type="text/javascript">
var ad = adFactory.getAd(88, 31);
ad.setPosition(1)
ad.write();
</script>
</div>
</td>
<td class="frmSearchTd"><form id="frmSearchArticle" method="get" action="http://search.time.com/results.html" onsubmit="omniSearch(this.Ntt.value);" autocomplete="off">
<label for="query">SEARCH TIME.COM</label>
<input type="hidden" name="N" value="0" />
<input type="hidden" name="Nty" value="1" />
<input type="hidden" name="p" value="0" />
<input type="hidden" name="cmd" value="tags" />
<ul id="searchCat">
<li><input name="srchCat" value="Full Archive" type="radio" checked="checked" />Full Archive</li>
<li><input name="srchCat" class="cvrInput" value="Covers" type="radio" />Covers</li>
<li><input type="radio" name="srchCat" class="vidInput" title="#videoAction"/>Videos</li>
</ul>
<input type="text" value="SEARCH TIME.COM" name="Ntt" id="query"/>
<input type="image" src="http://img.timeinc.net/time/rd/trunk/www/web/feds/i/btn_search.png" alt="Go" class="magnify" />
</form>
</td>
</tr>
</tbody>
</table>
</div>
<div id="vertical-main-nav">
<ul>
</ul>
</div> <!-- /div#vertical-cat-nav -->
</div> <!-- /div#header-sub -->
<div id="banner-ad-wrap">
<div id="banner-ad">
<script language="javascript" type="text/javascript">
adFactory.getMultiAd(new Array('728x90','970x418','101x1')).write();
</script>
</div>
</div>
<div id="container">
<div id="header">
<div id="trending">
<h3>Trending Now</h3>
<ul id="trends">
<li>
<div class="trending-thumb">
<a href="http://newsfeed.time.com/tag/libya/?iid=nftrending">
<img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/libya.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Zohra Bensemra / Reuters" title="Libya" /> </a>
</div>
<div class="trending-link">
<a href="http://newsfeed.time.com/tag/libya/?iid=nftrending">Libya</a>
</div>
</li>
<li>
<div class="trending-thumb">
<a href="http://newsfeed.time.com/tag/earthquake/?iid=nftrending">
<img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/newsfeed_0824.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Mandel Ngan / AFP / Getty Images" title="newsfeed_0824" /> </a>
</div>
<div class="trending-link">
<a href="http://newsfeed.time.com/tag/earthquake/?iid=nftrending">East Coast Quake</a>
</div>
</li>
<li>
<div class="trending-thumb">
<a href="http://newsfeed.time.com/2011/08/23/quote-will-smith-and-jada-pinkett-smith-deny-reports-they-are-separating/?iid=nftrending">
<img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/04/willsmith.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Tobias Schwarz / Reuters" title="Will Smith with his wife Jada Pinkett Smith, and their children Jaden and Willow" /> </a>
</div>
<div class="trending-link">
<a href="http://newsfeed.time.com/2011/08/23/quote-will-smith-and-jada-pinkett-smith-deny-reports-they-are-separating/?iid=nftrending">Will Smith</a>
</div>
</li>
<li>
<div class="trending-thumb">
<a href="http://newsfeed.time.com/tag/hurricane-irene/?iid=nftrending">
<img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/irene.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Ana Martinez / Reuters" title="Hurricane Irene" /> </a>
</div>
<div class="trending-link">
<a href="http://newsfeed.time.com/tag/hurricane-irene/?iid=nftrending">Hurricane Irene</a>
</div>
</li>
<li>
<div class="trending-thumb">
<a href="http://newsfeed.time.com/2011/08/23/watch-ryan-gosling-breaks-up-a-fight-on-the-streets-of-new-york/?iid=nftrending">
<img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/picture-48.png?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Picture 4" title="Picture 4" /> </a>
</div>
<div class="trending-link">
<a href="http://newsfeed.time.com/2011/08/23/watch-ryan-gosling-breaks-up-a-fight-on-the-streets-of-new-york/?iid=nftrending">Ryan Gosling</a>
</div>
</li>
</ul>
</div>
<div id="topAd">
<script type="text/javascript">adFactory.getAd(101, 1).write();</script>
</div>
<div class="clearjz"></div>
<div id="topic-like-hover" style="display:none;">
<div id="topic-like-bg">
<h5>Follow on Facebook</h5>
<div class="clear"></div>
<div class="bubble-left">
<div class="bubble-right">Get <span>
<a href="http://newsfeed.time.com/tag/nation/">nation</a> </span> updates from TIME on Facebook.</div>
</div>
</div>
<div class="clearjz"></div>
<img src="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/fb_arrow.gif?m=1306160022g" style="margin-left:20px;"/>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#topic-like-btn').hover(
function() {
var pos = $('#topic-like-btn').offset();
var height = $('#topic-like-hover').height();
$('#topic-like-hover').css('top', (pos.top - height)-10);
$('#topic-like-hover').css('left', pos.left);
$('#topic-like-hover').css('display', 'block');
},
function() {
$('#topic-like-hover').css('display', 'none');
}
);
});
</script>
<div id="content" role="main">
<div class="post-91292 post type-post status-publish format-standard hentry category-nation-2 category-u-s tag-crack tag-damage tag-earthquake tag-nation tag-obelisk tag-virginia-earthquake tag-washington-dc tag-washington-monument" id="post-91292">
<h3 id="topicName">
<a href="http://newsfeed.time.com/tag/nation/">nation</a> </h3>
<fb:like id="topic-like-btn" layout="button_count" show_faces="false" href="http://newsfeed.time.com/tag/nation/"></fb:like>
<div class="clear"></div>
<h1>Washington Monument Closes to Repair Earthquake-Induced Crack</h1>
<div class="meta">
<h4><span>By:</span> <a href="http://newsfeed.time.com/author/timemagjtm/" title="Posts by Jared T. Miller" rel="author">Jared T. Miller</a> </h4>
<h4>Topics: <a href="http://newsfeed.time.com/tag/crack/" rel="tag">Crack</a>, <a href="http://newsfeed.time.com/tag/damage/" rel="tag">damage</a>, <a href="http://newsfeed.time.com/tag/earthquake/" rel="tag">earthquake</a>, <a href="http://newsfeed.time.com/tag/nation/" rel="tag">nation</a>, <a href="http://newsfeed.time.com/tag/obelisk/" rel="tag">obelisk</a>, <a href="http://newsfeed.time.com/tag/virginia-earthquake/" rel="tag">virginia earthquake</a>, <a href="http://newsfeed.time.com/tag/washington-dc/" rel="tag">washington dc</a>, <a href="http://newsfeed.time.com/tag/washington-monument/" rel="tag">washington monument</a></h4>
</div>
<div class="entry">
<img width="455" height="296" src="http://timenewsfeed.files.wordpress.com/2011/08/newsfeed_0824.jpg?w=455" class="attachment-single-post-thumbnail wp-post-image" alt="Mandel Ngan / AFP / Getty Images" title="newsfeed_0824" /> <p id="description"></p>
<p id="caption">Mandel Ngan / AFP / Getty Images</p>
<div class="clearjz"></div>
<div id="facebookLikeButton">
<fb:like layout="button_count" show_faces="false" href="http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/?xid=fblike" colorscheme="none" class="fb-btn" send="true"></fb:like>
<g:plusone size="medium" count="true" href="http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/" class="plusone-btn"></g:plusone>
</div>
<p>Despite what the <a href="http://twitter.com/#%21/FohBohGal/status/106083225444687872">jeers of jaded Californians</a> might suggest, <a href="http://jmckinley.posterous.com/dc-earthquake-devastation">toppled lawn chairs</a> weren't actually the worst of the damage from Tuesday's earthquake that rattled the East Coast.<span id="more-91292"></span> The Washington Monument developed a crack near its peak from the magnitude-5.8 quake, prompting officials to close the statue indefinitely as they examine the extent of the damage.</p>
<p>A helicopter crew discovered the crack during a secondary inspection of the monument on Tuesday, which runs at an angle and measures about four inches in length. Structural engineers are continuing to inspect the damage the day after it was reported, and authorities erected a temporary 150-foot perimeter fence around the monument's base following the reports.</p>
<p>(<strong>MORE: </strong><a href="http://newsfeed.time.com/2011/08/23/top-tweets-about-the-east-coast-earthquake/">'Laughter Shocks': 13 Best Tweets About the East Coast Earthquake</a>)</p>
<p>"An outside engineering team will take whatever amount of time they need," <a href="http://www.msnbc.msn.com/id/44248387/ns/local_news-washington_dc/#.TlU4pzv-uRQ" target="_blank">National Parks Service spokesperson Bill Line said.</a> "They are going to do a structural analysis of the crack."</p>
<p>Despite the damage to the 127-year-old monument, a preliminary report from the NPS said it remains structurally sound. The organization also rejected a rumor, spread on Twitter, that the structure had tilted because of the earthquake.</p>
<p>Made of 91,000 tons of Maryland marble, the Washington Monument it is the world's tallest stone obelisk, towering at 555 feet high. While the grounds of the monument have been reopened since Tuesday's earthquake, access to the building itself remains suspended.</p>
<p>The obelisk wasn't the only landmark harmed in the Virginia quake that sent shock waves towards the nation's capital. The National Cathedral, the site of state funerals and presidential memorial services, lost three out of four of its fleur-de-lis corner spires which fell from the central tower onto its roof.</p>
<p><strong>PHOTOS: </strong><a href="http://www.time.com/time/photogallery/0,29307,2090095,00.html">Earthquake Shakes the Northeastern U.S.</a></p>
<div class="sharedaddy sd-like-enabled"></div> <div class="clearjz"></div>
</div>
<div id="share-tools">
<div class="comments">
<div class="comment-bubble">
<div class="comment-count">
<a href="#comments">8</a>
</div>
</div>
<a href="#comments"><img src="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/comments_btn.gif?m=1306160022g" alt="comments" class="comment-btn"/></a>
<div class="clear"></div>
</div>
<div class="social-icons">
<a href="javascript:window.print();"><img src="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/icon-print.gif?m=1306160022g" alt="print" class="print-icon" /></a>
<script type="text/javascript" src="http://img.timeinc.net/time/emailthis/emailcgi.js"></script>
<a href="javascript:void(0)" title="Email this story" class="toEmail" onclick="return(PT());"><img src="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/icon-email.gif?m=1306160022g" class="email-icon"/></a>
</div>
<div class="social-icons">
<a href="http://twitter.com/share" data-via="TIMENewsFeed" data-url="http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/" data-text="Washington Monument Closes to Repair Earthquake-Induced Crack" data-count="vertical" data-related="time,techland" class="twitter-share-button">Tweet</a>
<a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php" class="fb-share">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
<div class="clear"></div>
</div>
<div class="social-icons" style="padding-top:12px;">
<script type="text/javascript">
(function() {
var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://widgets.digg.com/buttons.js';
s1.parentNode.insertBefore(s, s1);
})();
</script>
<a class="DiggThisButton DiggMedium"></a>
<div class="stumble">
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
</div>
<div class="clear"></div>
</div>
<div class="more">
<div class="more-top">
<h4>MORE</h4>
</div>
<div class="more-popup" style="display:none;position:absolute;">
<ul class="moreTools">
<li class="addTools">
<h5>Add to my:</h5>
<ul class="tools">
<li class="delicious"><a title="del.icio.us" href="http://del.icio.us/post?url=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/&title=Washington Monument Closes to Repair Earthquake-Induced Crack¬es=Washington Monument Closes to Repair Earthquake-Induced Crack" target="_blank">del.icio.us</a></li>
<li class="technorati"><a title="Technorati" href="http://www.technorati.com/faves?add=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/" target="_blank">Technorati</a></li>
<li class="reddit"><a title="reddit" href="http://reddit.com/submit?url=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/" target="_blank">reddit</a></li>
<li class="googlebookmarks"><a title="Google Bookmarks" href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/&title=Washington Monument Closes to Repair Earthquake-Induced Crack" target="_blank">Google Bookmarks</a></li>
<li class="mixx"><a title="Mixx" href="http://www.mixx.com/submit?page_url=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/" target="_blank">Mixx</a></li>
<li class="stumbleupon"><a title="StumbleUpon" href="http://www.stumbleupon.com/submit?url=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/&title=Washington Monument Closes to Repair Earthquake-Induced Crack" target="_blank">StumbleUpon</a></li>
<div class="clear"></div>
</ul>
</li>
<li class="blogTools">
<h5>Blog this on:</h5>
<ul class="tools">
<li class="typepad"><a title="TypePad" href="http://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=Washington Monument Closes to Repair Earthquake-Induced Crack&qp_href=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/&qp_text=Washington Monument Closes to Repair Earthquake-Induced Crack">TypePad</a></li>
<li class="livejournal"><a title="LiveJournal" href="http://www.livejournal.com/update.bml?usescheme=nonavigation" target="_blank">LiveJournal</a></li>
<li class="blogger"><a title="Blogger" href="http://www.blogger.com/blog_this.pyra?t=&u=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/&l&n=Washington Monument Closes to Repair Earthquake-Induced Crack" target="_blank">Blogger</a></li>
<li class="wordpress"><a title="WordPress" href="#WordPress">WordPress</a></li>
<li class="myspace"><a title="MySpace" href="http://www.myspace.com/index.cfm?fuseaction=postto&t=Washington Monument Closes to Repair Earthquake-Induced Crack&c=Washington Monument Closes to Repair Earthquake-Induced Crack&u=http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/&l=1" target="_blank">MySpace</a></li>
<div class="clear"></div>
</ul>
</li>
</ul>
<div class="clear"></div>
</div>
</div>
<script type="text/javascript">
$(document).ready( function() {
$('.more-top h4').click(function() {
// get more button pos
pos = $('.more-top').position();
// set dropdown position
$('.more-popup').css('top', pos.top + 29);
$('.more-popup').css('left', pos.left + 22);
// toggle logic
if( $('.more-popup').css('display') == 'none' ) {
$('.more-top h4').css('background-image', 'url(http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/icon-less.gif)');
$('.more-top').css('border-color', '#ccc');
$('.more-popup').slideDown();
} else {
$('.more-popup').slideUp('slow', function() {
$('.more-top').css('border-color', '#fff');
$('.more-top h4').css('background-image', 'url(http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/icon-more.gif)');
});
}
});
$('#share-tools .more').hover(
function() {
// no hover on effect
},
function() {
// hover off tools
$('.more-popup').slideUp('slow', function() {
$('.more-top').css('border-color', '#fff');
$('.more-top h4').css('background-image', 'url(http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/icon-more.gif)');
});
}
);
});
</script>
<div class="clearjz"></div>
<div id="article-tools-ad">
<script type="text/javascript">
var ad = adFactory.getAd(88, 31);
ad.setPosition(8);
ad.write();
</script>
</div>
</div>
<div class="clearjz"></div>
<div id="relatedPosts">
<h3>Read Other Related Stories About This:</h3>
<ul>
<li><a href="http://www.cbsnews.com/8301-503544_162-20096496-503544.html" target="_blank">Earthquake damages Washington monument</a> <span class="source">(<a href="http://www.cbsnews.com/" target="_blank">CBS News</a>)<span></li><li><a href="http://www.msnbc.msn.com/id/44248387/ns/local_news-washington_dc/#.TlU4pzv-uRQ" target="_blank">4-Inch Crack Found in Washington Monument</a> <span class="source">(<a href="http://www.msnbc.msn.com" target="_blank">MSNBC</a>)<span></li><li><a href="http://www.washingtonpost.com/business/washington-monument-shuttered-by-earthquake-that-rocked-capital/2011/08/24/gIQAcQHXbJ_story.html" target="_blank">Washington Monument Shuttered by Earthquake That Rocked Capital</a> <span class="source">(<a href="http://www.washingtonpost.com" target="_blank">Washington Post</a>)<span></li>
</ul>
</div>
<div class="quigo605">
<script type="text/javascript">
tiiQuigoWriteAd(755777, 1517092, 605, 225, -1);
</script>
</div><!-- .quigo-ads -->
<div id="moreFrom">
<h2>The Latest on NewsFeed</h2>
<div class="post-91460 post type-post status-publish format-standard hentry category-arts-entertainment tag-abc tag-arts tag-ashley-herbert tag-ben-flajnik tag-love tag-marriage tag-reality-tv tag-television tag-the-bachelor tag-the-bachelorette" id="post-91460">
<div class="thumbnail">
<a href="http://newsfeed.time.com/2011/08/24/ladies-line-up-ben-flajnik-will-reportedly-be-the-next-bachelor/?iid=moreonnf" rel="bookmark" title="Permanent Link to Line Up, Ladies: Ben Flajnik Will Reportedly Be the Next 'Bachelor'"><img width="125" height="125" src="http://timenewsfeed.files.wordpress.com/2011/08/picture-72.png?w=125&h=125&crop=1" class="attachment-index-thumbnail wp-post-image" alt="Image via ABC" title="Picture 7" /></a>
</div>
<div class="meta">
<h4><a href="http://newsfeed.time.com/tag/arts/">Arts</a> </h4>
</div>
<h1><a href="http://newsfeed.time.com/2011/08/24/ladies-line-up-ben-flajnik-will-reportedly-be-the-next-bachelor/?iid=moreonnf" rel="bookmark" title="Permanent Link to Line Up, Ladies: Ben Flajnik Will Reportedly Be the Next 'Bachelor'">Line Up, Ladies: Ben Flajnik Will Reportedly Be the Next 'Bachelor'</a></h1>
<div class="entry hasThumbnail">
<p>This is the best — albeit totally expected — news we've heard all day. <a href="http://newsfeed.time.com/2011/08/24/ladies-line-up-ben-flajnik-will-reportedly-be-the-next-bachelor/#more-91460" class="more-link">Read More</a></p>
<div class="sharedaddy sd-like-enabled"></div> <div class="clearjz"></div>
</div>
</div>
<div class="post-91460 post type-post status-publish format-standard hentry category-arts-entertainment tag-abc tag-arts tag-ashley-herbert tag-ben-flajnik tag-love tag-marriage tag-reality-tv tag-television tag-the-bachelor tag-the-bachelorette partner-module">
<div class="thumbnail">
<a href="http://www.huffingtonpost.com/2011/08/20/dolphin-with-prosthetic-tail_n_927463.html#s330792&title=Animals_In_The" target="_blank"><img src="http://timenewsfeed.files.wordpress.com/2011/08/dolphin.jpg"/></a>
</div>
<div class="meta">
<h4><a href="#">From Our Partners</a></h4>
</div>
<h1><a href="http://www.huffingtonpost.com/2011/08/20/dolphin-with-prosthetic-tail_n_927463.html#s330792&title=Animals_In_The" target="_blank">Dolphin With Prosthetic Tail Gets Ready For Waves Of Publicity</a><span class="credit">HuffPost Weird News</span></h1>
<ul>
<li><h5><a href="http://www.huffingtonpost.com/2011/08/24/lady-gaga-clothing-line_n_934943.html" target="_blank" >Lady Gaga Clothing Line On The Way?</a><span class="credit">Huffington Post</span></h5></li>
<li><h5><a href="http://www.huffingtonpost.com/2011/08/19/global-warming-alien-invasion_n_931608.html" target="_blank" >Report: Fighting Global Warming Could Stave Off Alien Invasion</a><span class="credit">HuffPost Weird News</span></h5></li>
<li><h5><a href="http://www.aol.com/2011/08/24/octomom-nadya-suleman-win_n_935011.html" target="_blank" >Octomom Wins Celebrity Boxing Match</a><span class="credit">AOL News</span></h5></li>
</ul>
</div>
<div class="post-91293 post type-post status-publish format-standard hentry category-sports category-u-s tag-baseball tag-keystone tag-little-league tag-little-league-world-series tag-pennsylvania tag-quotes tag-sports-2 tag-tyler-mccloskey" id="post-91293">
<div class="thumbnail">
<a href="http://newsfeed.time.com/2011/08/24/quote-hometown-little-leaguers-enjoy-loud-crowds/?iid=moreonnf" rel="bookmark" title="Permanent Link to Quote: Hometown Little Leaguers Enjoy Loud Crowds"><img width="125" height="125" src="http://timenewsfeed.files.wordpress.com/2011/08/littleleague.jpg?w=125&h=125&crop=1" class="attachment-index-thumbnail wp-post-image" alt="Abby Drey / Centre Daily Times / MCT / Getty Images" title="Little League" /></a>
</div>
<div class="meta">
<h4><a href="http://newsfeed.time.com/tag/quotes/">quotes</a> </h4>
</div>
<div class="entry hasThumbnail">
<blockquote><p>"I'm not really nervous anymore, because I've done this about a million times now. I just have to go in there and stay focused and stay confident."</p></blockquote>
<p>— TYLER MCCLOSKEY, a 13-year-old pitcher for the Keystone, Pa., Little League team after another win in front of over 32,000 boisterous hometown fans at the Little League World Series, an event always played just 30 miles from Keystone in South Williamsport, Pa. (via <a href="http://sportsillustrated.cnn.com/2011/more/08/23/llws.tuesday.ap/index.html?sct=hp_t2_a8&eref=sihp" target="_blank">Sports Illustrated</a>)</p>
<div class="sharedaddy sd-like-enabled"></div> <div class="clearjz"></div>
</div>
</div>
</div><!-- /moreFrom -->
<div class="clearjz"></div>
</div><!-- ? -->
<a name="comments"></a>
<div id="comments-template">
<div id="disqus_thread">
<div id="dsq-content">
<ul id="dsq-comments">
</ul>
</div>
</div>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
<script type="text/javascript" charset="utf-8">
var disqus_url = 'http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/ ';
var disqus_identifier = '91292 http://newsfeed.time.com/?p=91292';
var disqus_container_id = 'disqus_thread';
var disqus_domain = 'disqus.com';
var disqus_shortname = 'newsfeed';
var disqus_config = function () {
var config = this; // Access to the config object
/*
All currently supported events:
* preData — fires just before we request for initial data
* preInit - fires after we get initial data but before we load any dependencies
* onInit - fires when all dependencies are resolved but before dtpl template is rendered
* afterRender - fires when template is rendered but before we show it
* onReady - everything is done
*/
config.callbacks.preData.push(function() {
// clear out the container (its filled for SEO/legacy purposes)
document.getElementById(disqus_container_id).innerHTML = '';
})
config.callbacks.onReady.push(function() {
// sync comments in the background so we don't block the page
var req = new XMLHttpRequest();
req.open('GET', '?cf_action=sync_comments&post_id=91292', true);
req.send(null);
});
};
var facebookXdReceiverPath = 'http://timenewsfeed.wordpress.com/wp-content/themes/vip/plugins/disqus/xd_receiver.htm';
</script>
<script type="text/javascript" charset="utf-8">
var DsqLocal = {
'trackbacks': [
],
'trackback_url': 'http://newsfeed.time.com/2011/08/24/washington-monument-closes-to-repair-earthquake-induced-crack/trackback/'
};
</script>
<script type="text/javascript" charset="utf-8">
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.' + disqus_domain + '/embed.js?pname=wordpress&pver=2.40';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</div>
<div id="sidebar" role="complementary">
<div id="sdac_most_popular_widget-3" class="widget widget_sdac_most_popular_widget"><h3 class="widgettitle">Most Read</h3> <div id="most-popular" class="sidebar-border">
<ol>
<li>
<div class="redNum">
1. </div>
<div class="popularTitle">
<a href="http://newsfeed.time.com/2011/08/24/google-doodle-honors-writer-jorge-luis-borges-and-his-forking-paths/?iid=nfmostpopular" rel="bookmark" title="Permanent Link to Google Doodle Honors Writer Jorge Luis Borges and His 'Forking Paths'">Google Doodle Honors Writer Jorge Luis Borges and His 'Forking Paths'</a>
</div>
<div class="popularPhoto">
<a href="http://newsfeed.time.com/2011/08/24/google-doodle-honors-writer-jorge-luis-borges-and-his-forking-paths/?iid=nfmostpopular" rel="bookmark" title="Permanent Link to Google Doodle Honors Writer Jorge Luis Borges and His 'Forking Paths'"><img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/google-doodle-jorges-luis-borges.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Google.com" title="google-doodle-jorges-luis-borges" /></a>
</div>
<div class="clearjz"></div>
</li>
<li>
<div class="redNum">
2. </div>
<div class="popularTitle">
<a href="http://newsfeed.time.com/2011/08/23/twitter-versus-real-life-how-new-yorkers-really-reacted-to-the-earthquake/?iid=nfmostpopular" rel="bookmark" title="Permanent Link to Twitter Versus Real Life: How New Yorkers Really Reacted to the Earthquake">Twitter Versus Real Life: How New Yorkers Really Reacted to the Earthquake</a>
</div>
<div class="popularPhoto">
<a href="http://newsfeed.time.com/2011/08/23/twitter-versus-real-life-how-new-yorkers-really-reacted-to-the-earthquake/?iid=nfmostpopular" rel="bookmark" title="Permanent Link to Twitter Versus Real Life: How New Yorkers Really Reacted to the Earthquake"><img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/earthquake_nyc.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="Spencer Platt / Getty Images" title="5.9 Earthquake Shakes East Coast" /></a>
</div>
<div class="clearjz"></div>
</li>
<li>
<div class="redNum">
3. </div>
<div class="popularTitle">
<a href="http://newsfeed.time.com/2011/08/23/top-tweets-about-the-east-coast-earthquake/?iid=nfmostpopular" rel="bookmark" title="Permanent Link to 'Laughter Shocks': 13 Best Tweets About the East Coast Earthquake">'Laughter Shocks': 13 Best Tweets About the East Coast Earthquake</a>
</div>
<div class="popularPhoto">
<a href="http://newsfeed.time.com/2011/08/23/top-tweets-about-the-east-coast-earthquake/?iid=nfmostpopular" rel="bookmark" title="Permanent Link to 'Laughter Shocks': 13 Best Tweets About the East Coast Earthquake"><img width="50" height="50" src="http://timenewsfeed.files.wordpress.com/2011/08/aptopix_east_coast_quake-sff.jpg?w=50&h=50&crop=1" class="attachment-popular-thumbnail wp-post-image" alt="J. Scott Applewhite / AP" title="APTOPIX East Coast Quake" /></a>
</div>
<div class="clearjz"></div>
</li>
</ol>
<div class="clearjz"></div>
</div>
</div> <div id="newsfeed_tweetbox_widget-3" class="widget widget_newsfeed_tweetbox_widget">
<div id="tbox-container">
<div id="twitter-login-logout"></div>
<div id="tbox"></div>
<div id="tbox-sent"></div>
</div>
<script type="text/javascript">
(function($) {
var bitly_url = 'http://ti.me/rlA8dI';
twttr.anywhere(function (T) {
T("#tbox").tweetBox({
label: "",
height: 60,
width: 300,
defaultContent: "Washington Monument Closes to Repair Earthquake-Induced Crack " +bitly_url+ " via @TIMENewsFeed",
onTweet: tweetbox_sent
});
var currentUser, screenName, profileImage, profileImageTag, profileHTML;
if( T.isConnected() ) {
tweetbox_update_user();
} else {
// show our custom login rather than connect button
tweetbox_show_login();
}
T.bind("authComplete", function (e, user) {
$('#twitter-login-logout').html('');
$('#twitter-login-logout').hide();
tweetbox_update_user();
$('#twitter-login-logout').fadeIn(1000);
});
T.bind('signOut', function(e) {
$('#twitter-login-logout').fadeOut(1000, function() {
$('#twitter-login-logout').html('');
$('#twitter-login-logout').show();
tweetbox_show_login();
});
});
function tweetbox_show_login() {
var loginHTML = '';
loginHTML += '<img id="tweetbox-login-img" src="http://s0.wp.com/wp-content/themes/vip/timenewsfeed/images/tweetbox-login.gif?m=1306160022g"/>';
loginHTML += '<h3>Tweet This Article</h3>';
loginHTML += 'Twitter: <a id="tweetbox-login-link">Login</a>';
$('#twitter-login-logout').html(loginHTML);
$('#tweetbox-login-img').bind('click', function() {
T.signIn();
})
$('#tweetbox-login-link').bind('click', function() {
T.signIn();
})
}
function tweetbox_update_user() {
currentUser = T.currentUser;
screenName = currentUser.data('screen_name');
profileImage = currentUser.data('profile_image_url');
profileImageTag = '<img src="' + profileImage + '" />';
profileHTML = profileImageTag;
profileHTML += '<h3>Tweet This Article</h3>';
profileHTML += 'Twitter: <a href="http://twitter.com/'+screenName+'">'+screenName+'</a>';
$('#twitter-login-logout').html(profileHTML);
$('#twitter-login-logout').append(' | <a id="twitter-logout">Log Out</a>');
$('#twitter-logout').bind('click', function() {
twttr.anywhere.signOut();
});
}
function tweetbox_sent() {
$('#tbox-sent').html('Tweet Sent!');
}
});
})(jQuery);
</script>
</div>
<div id="sideAd">
<script type="text/javascript">
adFactory.getMultiAd(new Array('300x250', '336x280','300x600','468x648')).write();
</script>
</div>
<div id="newsfeed_follow-3" class="widget widget_newsfeed_follow"> <h3 class="widgettitle">Follow NewsFeed</h3> <div class="fb-like"><fb:like href="http://www.facebook.com/#!/time?ref=ts" layout="button_count" show_faces="true"></fb:like></div>
<a href="http://twitter.com/#!/TIMENewsFeed" target="_blank" class="twitter">Follow</a>
<a href="http://newsfeed.time.com/feed/" class="rss">Feed</a>
</div> <div id="time_most_popular_time_widget-3" class="widget widget_time_most_popular_time_widget"> <div class="tabsMod">
<h3>Most Popular</h3>
<div class="tabsWrap">
<div id="tab8"><a id="tabChange8"><span>ON TIME.COM</span></a></div>
<div id="tab9" class="off"><a id="tabChange9"><span>ON BLOGS</span></a></div>
<div id="tab10" class="off"><a id="tabChange10"><span>ON NEWSFEED</span></a></div></div>
<ol id="tabContent8">
<!--[if IE 5]> Vignette StoryServer 5.0 Wed Aug 24 18:20:10 2011 <![endif]-->
<li><a href="http://www.time.com/time/world/article/0,8599,2090205,00.html">Gaddafi's Fleeing Mercenaries Describe the Collapse of the Regime</a></li><li><a href="http://www.time.com/time/magazine/article/0,9171,1870491,00.html">The Mystery of Borderline Personality Disorder</a></li><li><a href="http://www.time.com/time/world/article/0,8599,2090033,00.html">Into Gaddafi's Bunker: The Rebels Overrun the Regime's Nerve Center</a></li><li><a href="http://www.time.com/time/nation/article/0,8599,2089618,00.html">7 Things You Need to Know About a School (Before You Enroll Your Kid)</a></li><li><a href="http://www.time.com/time/world/article/0,8599,2090173,00.html">Rebels Take Tripoli, but the Fighting May Be Far from Over</a></li><li><a href="http://www.time.com/time/nation/article/0,8599,2090147,00.html">Flagging Down the Waiter: A Modest Proposal</a></li><li><a href="http://www.time.com/time/world/article/0,8599,2090116,00.html">Bye-Bye, Gaddafi: How Italy Will Profit from the New Libyan Regime</a></li><li><a href="http://www.time.com/time/arts/article/0,8599,2089575,00.html">Pottermore's Pioneers: Exploring J.K. Rowling's New Site</a></li><li><a href="http://www.time.com/time/world/article/0,8599,2089797,00.html">Israel to Egypt: Sorry, We're Really, Really Sorry</a></li><li><a href="http://www.time.com/time/world/article/0,8599,2087274,00.html">Areleh Harel: The Orthodox Rabbi Helping Gay Men Marry Lesbians</a></li>
</ol>
<ol id="tabContent9" class="off">
<li><a href='http://newsfeed.time.com/2011/08/23/top-tweets-about-the-east-coast-earthquake/'>'Laughter Shocks': 13 Best Tweets About the East Coast Earthquake</a></li><li><a href='http://moneyland.time.com/2011/08/19/12-things-you-really-should-just-stop-buying/'>12 Things You Should Stop Buying Now</a></li><li><a href='http://moneyland.time.com/2011/08/23/16-4-million-ferrari-sets-new-record-for-most-expensive-car/'>$16.4 Million Ferrari Sets New Record For Most Expensive Car</a></li><li><a href='http://newsfeed.time.com/2011/08/23/twitter-versus-real-life-how-new-yorkers-really-reacted-to-the-earthquake/'>Twitter Versus Real Life: How New Yorkers Really Reacted to the Earthquake</a></li><li><a href='http://moneyland.time.com/2011/08/23/15-financial-moves-to-make-now/'>15 Financial Moves to Make Right Now</a></li><li><a href='http://healthland.time.com/2011/08/22/men-vs-women-who-gains-more-weight-after-marriage-and-divorce/'>Men vs. Women: Who Gains More Weight After Marriage and Divorce?</a></li><li><a href='http://globalspin.blogs.time.com/2011/08/23/chinas-security-chief-goes-on-tour%E2%80%94how-is-asia-reacting/'>China's Security Chief Goes on Tour—How Is Asia Reacting?</a></li><li><a href='http://healthland.time.com/2011/06/16/magic-mushrooms-can-improve-psychological-health-long-term/'>'Magic Mushrooms' Can Improve Psychological Health Long Term</a></li><li><a href='http://healthland.time.com/2011/08/23/eat-well-move-often-dont-smoke-drink-a-little-and-live-long/'>Eat Well, Move Often, Don't Smoke, Drink a Little — and Live Long</a></li><li><a href='http://moneyland.time.com/2011/08/23/dog-nappings-the-economys-to-blame-for-a-rise-in-dog-kidnappings/'>Dognapping! The Economy Is to Blame for a Rise in Dog Kidnapping</a></li> </ol>
<ol id="tabContent10" class="off">
<li><a href='http://newsfeed.time.com/2011/08/23/top-tweets-about-the-east-coast-earthquake/'>'Laughter Shocks': 13 Best Tweets About the East Coast Earthquake</a></li><li><a href='http://newsfeed.time.com/2011/08/23/twitter-versus-real-life-how-new-yorkers-really-reacted-to-the-earthquake/'>Twitter Versus Real Life: How New Yorkers Really Reacted to the Earthquake</a></li><li><a href='http://newsfeed.time.com/2011/08/24/the-5-best-twitter-accounts-for-hurricane-tracking/'>Five Ways to Track Hurricane Irene on Twitter</a></li><li><a href='http://newsfeed.time.com/2011/08/23/watch-david-letterman-responds-to-jihadist-death-threat-against-him/'>Watch: David Letterman Responds to Jihadist Death Threat Against Him</a></li><li><a href='http://newsfeed.time.com/2011/08/23/tests-show-no-illegal-drugs-involved-in-amy-winehouses-death/'>Tests Show No Illegal Drugs Involved in Amy Winehouse's Death</a></li><li><a href='http://newsfeed.time.com/2011/08/23/quote-will-smith-and-jada-pinkett-smith-deny-reports-they-are-separating/'>Quote: Will Smith and Jada Pinkett Smith Deny Reports They Are Separating</a></li><li><a href='http://newsfeed.time.com/2011/08/23/tom-brady-and-gisele-bundchen-are-the-worlds-highest-paid-celebrity-couple/'>Tom Brady and Gisele Bundchen Are the World's Highest-Paid Celebrity Couple</a></li><li><a href='http://newsfeed.time.com/2011/08/23/ready-or-not-hurricane-irene-could-swing-past-florida-as-a-deadly-category-4/'>Ready or Not, Hurricane Irene Could Swing Past Florida as a Deadly Category 4</a></li><li><a href='http://newsfeed.time.com/2011/08/19/oversexed-oregon-top-10-most-promiscuous-u-s-cities/'>Oversexed Oregon: Top 10 Most Promiscuous U.S. Cities</a></li><li><a href='http://newsfeed.time.com/2011/08/23/watch-rebels-storm-gaddafi-compound-in-libya-celebrate-on-camera/'>Watch: Rebels Storm Gaddafi Compound in Libya, Celebrate on Camera</a></li> </ol>
<div class="clearjz"></div>
</div>
</div><div id="time_more_on_time_widget-3" class="widget time_more_on_time_widget"> <div id="moreOnTime">
<h3 id="moreOnTimeHd" class="widgettitle">More on Time.com</h3>
<div class="more_on_time">
<div class="more_on_time_left">
<a href="http://www.time.com/time/photogallery/0,29307,2060413,00.html?xid=rss-photoessays"><img src="http://img.timeinc.net/time/photoessays/2011/libya_0823/75_libya_0823_a_tout.jpg" width="75" height="75" alt="Photos: Inside the Battle for Tripoli" title="Photos: Inside the Battle for Tripoli"/></a>
</div>
<div class="more_on_time_right">
<h2 class="more_on_time_headline">
<a href="http://www.time.com/time/photogallery/0,29307,2060413,00.html?xid=rss-photoessays">Photos: Inside the Battle for Tripoli</a>
</h2>
</div>
</div>
<div class="more_on_time">
<div class="more_on_time_left">
<a href="http://www.time.com/time/specials/packages/0,28757,2087815,00.html?xid=rss-specials"><img src="http://img.timeinc.net/time/daily/2011/1108/75_bestwebsites_hp_0816.jpg" width="75" height="75" alt="TIME's 50 Best Websites of 2011" title="TIME's 50 Best Websites of 2011"/></a>
</div>
<div class="more_on_time_right">
<h2 class="more_on_time_headline">
<a href="http://www.time.com/time/specials/packages/0,28757,2087815,00.html?xid=rss-specials">TIME's 50 Best Websites of 2011</a>
</h2>
</div>
</div>
<div class="more_on_time">
<div class="more_on_time_left">
<a href="http://www.time.com/time/photogallery/0,29307,2090095,00.html?xid=rss-photoessays"><img src="http://img.timeinc.net/time/photoessays/2011/eastcoast_earthquake/75_east_coast_earthquake_tout.jpg" width="75" height="75" alt="Photos: Scenes from a Historic East Coast Tremor" title="Photos: Scenes from a Historic East Coast Tremor"/></a>
</div>
<div class="more_on_time_right">
<h2 class="more_on_time_headline">
<a href="http://www.time.com/time/photogallery/0,29307,2090095,00.html?xid=rss-photoessays">Photos: Scenes from a Historic East Coast Tremor</a>
</h2>
</div>
</div>
</div><div class="clear"></div>
</div>
<div id="sdac_subscribe_widget-4" class="widget widget_sdac_subscribe_widget"><h3 class="widgettitle">Subscribe to NewsFeed Newsletter</h3>
<form id="newsfeed_newsletter_side" action="https://ebm.cheetahmail.com/r/regf2" method="post" target="newsfeed_newsletter_side" onsubmit="window.open(this.action, 'newsfeed_newsletter_side', 'width=486,height=250');">
<input type="hidden" name="n" value="4" />
<input name="aid" type="hidden" value="1078532063" />
<input type="hidden" name="TIME_SOURCE" value="Newsfeed" />
<input type="hidden" name="re" value="http://f.chtah.com/i/30/1078532063/newsfeedconfirm.html" />
<div>
<input type="checkbox" name="fsub" value="2082151414" checked="yes" />
<label>Daily Digest</label>
</div>
<div>
<input type="checkbox" name="fsub" value="2082151431" checked="yes" />
<label>Trending News</label>
</div>
<div>
<input type="text" id="subscribeEmail" name="email" value="Enter e-mail address" onfocus="this.value=''" />
<input type="submit" value="Submit" />
</div>
</form>