forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_huffingtonPost2.html
More file actions
6411 lines (4743 loc) · 283 KB
/
Copy pathtest_huffingtonPost2.html
File metadata and controls
6411 lines (4743 loc) · 283 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">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
<head >
<!-- core ad call for AOL AdTech CMS DELIVERED -->
<script type="text/javascript" src="http://o.aolcdn.com/ads/adsWrapper.js"></script>
<!--end of ad call-->
<script type='text/javascript'>
adSetAdURL('http://' + ((document.domain && document.domain != '')?document.domain:'www.huffingtonpost.com') + ((location.port)?':'+location.port:'') + '/_uac/adpage.html');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<link rel="search" type="application/opensearchdescription+xml" href="/ie8search/opensearch.xml.php" title="HuffPost Search" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="canonical" href="http://www.huffingtonpost.com/2011/10/06/alabama-workers-immigration-law_n_997793.html" />
<meta name="keywords" content="alabama, workers, leave, state, as, immigration, law, takes, effect, business" />
<meta name="description" content="MONTGOMERY, Ala. -- Alabama's strict new immigration law may be backfiring. Intended to force illegal workers out of jobs, it is also driving away many construction workers, roofers and field hands in the country legally who do backbreaking jobs that Americans generally won't." />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://www.huffingtonpost.com/2011/10/06/alabama-workers-immigration-law_n_997793.html" />
<meta property="og:site_name" content="The Huffington Post"/>
<meta property="og:title" content="Alabama Workers Leave State As Immigration Law Takes Effect" />
<meta property="fb:app_id" content="46744042133"/>
<meta name="title" content="Alabama Workers Leave State As Immigration Law Takes Effect" />
<meta name="category" content="Business" />
<meta name="author" content="AP" />
<meta property="article:section" content="Business"/>
<meta name="publish_date" content="Thu, 06 Oct 2011 08:10:27 EST" />
<link rel="image_src" href="http://i.huffpost.com/gen/369284/thumbs/s-ALABAMA-WORKERS-IMMIGRATION-LAW-large.jpg" />
<meta name="image" content="http://i.huffpost.com/gen/369284/thumbs/s-ALABAMA-WORKERS-IMMIGRATION-LAW-small.jpg" />
<meta property="og:image" content="http://i.huffpost.com/gen/369284/thumbs/s-ALABAMA-WORKERS-IMMIGRATION-LAW-small.jpg" />
<title>Alabama Workers Leave State As Immigration Law Takes Effect</title>
<link rel="stylesheet" href="http://s.huffpost.com/assets/css.php?f=fonts%2Fhelvetica-neue%2Fstylesheet.css%2Cpage_type%2Fbnpages.css%2Chp_modules%2Ftop_nav.css%2Cverticals%2Fbusiness.css%2Cbasic.css%2Cmasthead.css%2Call_pages.css%2Cmaster.css%2Cbuttons.css%2Chp_modules%2Fmodule.photo_galleries.css%2Cprofiles.css%2Cadd%2Finner.css%2Chp_modules%2Fmodule.threeup.css%2Cemail_share.css%2Ccommercial.css%2Chp_modules%2Fmodule.apps_feeds.css&v60067" type="text/css" media="screen" /><link rel="stylesheet" href="http://s.huffpost.com/assets/css.php?f=hufflists.css%2Cdirect_message.css%2Cshare_boxes.css%2Cbadges_v2.css%2Csharer.css%2Ccomments.css%2Chp_modules%2Fmodule.snn_entry_inside.css%2Chp_modules%2Fmodule.most_popular_social.css%2Chp_modules%2Ffacebook.css%2Cuser_levels.css%2Cverticals%2Fcolor_scheme.css%2Ctwitter.css%2Cbing.css%2Csubmissions.css%2Chp_modules%2Fmodule.bubble.css%2Chp_modules%2Fmodule.edition_nav.css%2Csocial-navbar.css%2Chp_modules%2Fmodule.sponsor-widgets.css%2Chp_modules%2Fgeneral.css%2Csnp_friends.css%2Csnn-header.css%2Csignup_modal.css%2Chuff_promo.css%2Cmodal_frames.css%2Cmodal_window.css%2Cuser_promo.css&v60089" type="text/css" media="screen" />
<link rel="stylesheet" href="http://s.huffpost.com/assets/css.php?f=print-view.css&v54313" type="text/css" media="print" />
<script type="text/javascript" src="http://s.huffpost.com/assets/js.php?f=yui.js%2Cjquery.js&v55266" ></script>
<script type="text/javascript" src="http://s.huffpost.com/assets/js.php?f=huff.js%2Chp_config.js%2Chp_app.js%2Chp_plugins_default.js%2Chp_plugins_default_yui.js%2Chp_init.js%2Cjquery%2Fjquery.backgroundPosition.js%2Cjquery%2Fjquery.mousewheel-min.js%2Ccookiesmin.js%2Cjsonmin.js%2Chp_track.js%2Chp_util.js%2Chp_browser.js%2C_tmp%2Fcommon.js%2C_tmp%2Ffloating_promt.js%2C_tmp%2Fevent_module.js%2C_tmp%2Fdoc_status.js%2C_tmp%2Fview_tracker.js%2C_tmp%2Fclick_tracker.js%2C_tmp%2Fslider.js%2C_tmp%2Fstructured_image.js%2C_tmp%2Fcommon_paginator.js%2C_tmp%2Fcurtain.js%2C_tmp%2Fpaginator.js%2C_tmp%2Fon_focus_timer.js%2C_tmp%2Fhp_ads.js%2C_tmp%2Ftwitter_util.js%2C_tmp%2Faol_search.js%2C_tmp%2Felection_widgets.js%2C_tmp%2Fhot_keys.js%2C_tmp%2Fmodal.js%2C_tmp%2Fuser_poll.js%2C_tmp%2Fquick_snp.js%2C_tmp%2Fquick_login.js%2C_tmp%2Fquick_facebook_invite.js%2C_tmp%2Ffan_action.js%2C_tmp%2Fquick_subscribe_user.js%2C_tmp%2Fquick_signup.js%2C_tmp%2Fquick_fan.js%2C_tmp%2Fsay_it.js%2C_tmp%2Fquick_contribute.js%2C_tmp%2Flightbox_search.js%2C_tmp%2Femail_alerts.js%2Cprovider.js%2Cposts.js%2Cshare.js%2Chuff_promo.js%2Cjquery%2Fcolor.jquery.js%2Cflashobjectmin.js%2Clazyload-min.js%2Cfacebook.js%2Csnproject.js%2Csnn_module.js%2Cuser.js%2Chp_message.js%2Csocial_friends.js%2Cuser%2Frecommendations.js%2Csubmissions.js%2Cmodules%2Fhpimagecrop.js%2Cjquery%2Fjquery.inview.min.js%2Cpopup_manager.js%2Cbadges_v2.js%2Csharer.js%2Cuser_levels.js%2Cpopup.js%2Chuffconnect.js%2Cconnect_overview.js%2Cbing.js%2Chptwitter_anywhere.js%2Chptwitter.js%2Csitemode.js&v60103"></script>
<script type="text/javascript">huff.v()</script>
<script type="text/javascript" src="http://s.huffpost.com/assets/js.php?f=v.js&v60124"></script>
<script type="text/javascript">
// common modules
huff.use('conf', 'modal', 'image', 'layout', 'cookies', 'user', 'track', 'common', 'promo', 'app-feeds', 'front/quickread', 'front/topnav');
// bpage modules
huff.use('bpage/threeup', 'bpage');
</script>
<script type="text/javascript">
HPConfig.comments_update_interval = 120000; HPConfig.comments_update_for_all_users = false; HPConfig.user_show_levels_and_badges_disabled = false; </script>
<link rel="alternate" type="application/rss+xml" title="The Full Feed" href="http://feeds.huffingtonpost.com/huffingtonpost/raw_feed" />
<link rel="alternate" type="application/rss+xml" title="Latest News" href="http://feeds.huffingtonpost.com/huffingtonpost/LatestNews" />
<link rel="alternate" type="application/rss+xml" title="The Blog" href="http://feeds.huffingtonpost.com/huffingtonpost/TheBlog" />
<link rel="alternate" type="application/rss+xml" title="Featured Posts" href="http://feeds.huffingtonpost.com/FeaturedPosts" />
<link rel="alternate" type="application/json+oembed"
href="http://www.huffingtonpost.com/services/oembed?url=http%3A%2F%2Fwww.huffingtonpost.com%2F2011%2F10%2F06%2Falabama-workers-immigration-law_n_997793.html&format=json"
title="Alabama Workers Leave State As Immigration Law Takes Effect" />
<link rel="alternate" type="text/xml+oembed"
href="http://www.huffingtonpost.com/services/oembed?url=http%3A%2F%2Fwww.huffingtonpost.com%2F2011%2F10%2F06%2Falabama-workers-immigration-law_n_997793.html&format=xml"
title="Alabama Workers Leave State As Immigration Law Takes Effect" />
<script type="text/javascript">
HPFB.api_key = "4d965afccc4d86c598dbf5d94fb34a7c";
HPFB.app_id = "46744042133";
</script>
<!--commercial var declaration for GE wellness campaign-->
<script type="text/javascript">var feedKeyword = "Wellness";</script>
<script type="text/javascript">
HPAds.full_page_config = {"flights":[{"mode":"all_but","name":"devil","spots":["left_lower"]}]};
</script>
<!--end of GE code-->
<script type="text/javascript">
var ads_ext_ref_sig = '';
</script>
</head>
<body id="news" class="bpage_body loadimages business ">
<!-- current domain: huffingtonpost.com -->
<div id="anywhere_block"></div>
<script type="text/javascript">TwitterAnywhere.anywhere();</script>
<script type="text/javascript">
HPConfig.enable_fb_widgets = 1;
HPConfig.current_vertical_name = 'business';
HPConfig.current_vertical_id = 5;
HPConfig.current_web_address = "www.huffingtonpost.com";
HPConfig.current_uri = "/2011/10/06/alabama-workers-immigration-law_n_997793.html";
HPConfig.hp_static_domain = "s.huffpost.com";
HPConfig.inst_type = "prod";
HPConfig.timestamp_for_clearing_js = "0";
HPConfig.slideshow_individual_slide_link = false; // by default
HPConfig.slideshow_mode = "0";
HPConfig.slideshow_type = "";
HPConfig.slideshow_id = 0;
HPConfig.wide_format = 0;
HPConfig.entry_id = 997793;
HPConfig.blog_id = 2;
HPConfig.entry_design = "";
HPConfig.display_domain = "i.huffpost.com";
HPConfig.page_type = "bpage";
HPConfig.twitter_signature = "@huffingtonpost";
HPConfig.current_vertical_color = '#2b0073';
HPConfig.current_vertical_color_light = '#1F0050';
HPConfig.entry_tags = new Array('labor','video','@depressing','@recommend','business-news','alabama-economy','alabama-immigration-law','alabama-workers','alabama-workers-immigration-law','illegal-immigrants','immigration-reform','undocumented-immigrants','undocumented-workers');
HPConfig.huffsite = "www.huffingtonpost.com";
//Synchronise the user login status on multi-domain with huffingtonpost.com
HPConfig.recaptcha_key = "6Ld6ZcISAAAAAIhkL02obhQNn6tdW47W-t-HcPAO";
HPConfig.bit_ly_key = {"user_name":"huffpost","user_key":"R_3db9b90fe8f78f0f2b180e72055462c8"};
HPConfig.entry_expanded = 0;
HPConfig.image = 'http://i.huffpost.com/gen/369284/thumbs/s-ALABAMA-WORKERS-IMMIGRATION-LAW-large.jpg';
HPAds.social_campaigns = {"all_on_everywhere":{"fb_100x20":"","hashtag":"","twitter_optout_language":"","email_message":""},"social_business":{"fb_100x20":"","hashtag":"","twitter_optout_language":"","email_message":""}};
HPConfig.terms_link = "";
HPConfig.privacy_link = "";
</script>
<!-- tacProp object -->
<script type="text/javascript">
tacProp = new Object();
tacProp.vert = "Business";
tacProp.tags="kventryid=997793;kvcmsid=hpo:997793;kvpagetype=bpage:news;kveditags=labor:video:@recommend:business-news:alabama-economy:alabama-immigration-law:alabama-workers:alabama-workers-immigration-law:illegal-immigrants:immigration-reform:undocumented-immigrants:undocumented-workers;kvmood=depressing;kvvert=business;kvspon=y;" + HPAds.adtech_client_side_inf();
adSetOthAT(tacProp.tags);
</script><!-- end of tacProp object -->
<script type="text/javascript">
HPConfig.fb_recom_version = 2;
HPConfig.most_popular_version = 3;
</script>
<div id="fb-root"></div>
<script>
HPFB.init();
</script>
<div id="_snp_tracking" style="width:0px; height:0px;" ></div>
<div id="_stats_tracking" style="width:0px; height:0px;" ></div>
<script type="text/javascript">
var zone_info = "huffpost.business;business=1;latino-voices=1;;entry_id=997793;labor=1;video=1;@depressing=1;@recommend=1;business-news=1;alabama-economy=1;alabama-immigration-law=1;alabama-workers=1;alabama-workers-immigration-law=1;illegal-immigrants=1;immigration-reform=1;undocumented-immigrants=1;undocumented-workers=1";
</script>
<div id="mobile_promo"></div>
<!-- snp module skinning -->
<!-- /snp module skinning -->
<script type="text/javascript">
var _gaq = _gaq || [];
HPTrack.async = true;
HPTrack.getTracker();
HPTrack.setCustomVar("news", "default");
HPTrack.setCustomVar('vertical', 'Business');
HPTrack.trackPageview();
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
bN_cfg = {
h: location.hostname,
p: {"dL_ch":"us.hpmgbus","dL_dpt":"default","dL_cmsID":"hpo:997793","cobrand":"HuffPost"}};
function runOmni() {
s_265.pfxID = 'hpo';
s_265.channel = 'us.hpmgbus';
s_265.linkInternalFilters = 'javascript:,huffingtonpost.com';
s_265.prop16 = 'news';
s_265.prop1 = 'default';
s_265.pageName = "" + document.title;
s_265.prop9 = 'hpo:997793';
s_265.prop22 = 'jillian-berman';
s_265.prop23 = '10-06-2011';
s_265.prop12 = "" + document.URL.split('?')[0];
s_265.t();
}
s_265_account ="aolhuffpostbusiness,aolsvc";
(function(d){
var s = d.createElement('script');
s.src = "http://o.aolcdn.com/os_merge/?file=/aol/beacon.min.js&file=/aol/omniture.min.js";
d.getElementsByTagName('head')[0].appendChild(s);
})(document);
</script> <!-- Modal -->
<div id="huff_modal_common" class="light_box_modal" style="visibility: hidden;">
<div id="huff_modal_common_inner" class="light_box_modal_inner">
<img src="/images/lightbox/loading.gif" class="block margin_auto" width="24" height="24" alt="">
</div>
</div>
<!-- /Modal -->
<!-- SNN Modal -->
<div id="huff_snn_modal_common" class="light_box_modal" style="visibility: hidden;">
<div class="huffpo_lightbox_wrapper blue_bg corners_15px"><div class="inner-wrapper white_bg corners_10px">
<div id="lightbox_header">
<div class="huffpo_logo_lightbox">
<img src="http://s.huffpost.com/images/social-profile/lightbox/huffpo_logo_lightbox_beta.png" width="368" height="36" alt="" />
</div>
<div class="huffpo_snn_close_link">
<a class="huff_snn_modal_common_close" id="huff_snn_modal_common_close" href="#" onclick="HuffConnect.hideModal(); return false;"></a>
</div>
<br />
<div class="huffpo_snn_hr"></div>
</div>
<div id="huffpo_snn_is_loading" style="width:100%; text-align:center;"><img width="32" height="32" src="http://s.huffpost.com/images/loader.gif" alt="" /></div>
<div id="huff_snn_modal_common_inner"></div>
<div class="clear"></div>
</div></div>
</div>
<!-- end SNN Modal -->
<!-- Modal SHARE-->
<div id="huff_modal_share" class="huff_modal" style="visibility: hidden">
<div id="modal_inner_share" class="huff_modal">
<div>
<a href="#" onclick="QV.hideMask(); return false;" id="close_share">
<!--img src="http://s.huffpost.com/images/quickread/closeqr-home.gif" id="close_share" align="right" alt=""/-->
</a>
<div class="hp-qread" style="margin-left: 10px; margin-bottom: 5px;">HuffPost's QuickRead...</div>
</div>
<div class="content share">
<div id="modal_content">
<script>
ShareBox.ad = function (tag_id)
{
if ($(tag_id) == undefined) return;
if ($(tag_id).innerHTML != '') return;
ad_spec = {
"zone_info": "huffpost.business;business=1;latino-voices=1;;entry_id=997793;labor=1;video=1;@depressing=1;@recommend=1;business-news=1;alabama-economy=1;alabama-immigration-law=1;alabama-workers=1;alabama-workers-immigration-law=1;illegal-immigrants=1;immigration-reform=1;undocumented-immigrants=1;undocumented-workers=1",
"ord": 1317943065,
"tile": 3,
"width": 300,
"height": 250,
"el_id": tag_id + "_js",
"class_name": "ad_block ad_wide top",
"type": "iframe"
}
HuffPoUtil.WEDGJE.write(ad_spec, tag_id);
};
</script>
<div id="share_tools_loader">Loading...</div>
<div id="share_tools" class="display_none"></div>
<script type="text/javascript" charset="utf-8">
ShareBox.set_email_class();
var CommentPoller = {
check: function(entry_id)
{
if (document.getElementById('lastComment')) {
var last=document.getElementById('lastComment').innerHTML;
Comments.addCommentMy(entry_id, last, 0);
}
setTimeout("CommentPoller.check(997793);", 30000);
}
}
CommentPoller.check(997793);
</script> </div>
<div class="clear"></div>
</div>
</div>
</div>
<!-- /Modal SHARE-->
<!-- Modal -->
<div id="huff_modal" class="quickread" style="visibility: hidden;" >
<div id="modal_inner">
<div>
<a href="/" onclick="QV.hideMask(); return false;" class="close_quickread_modal"></a>
<div id="quickread_head_tip" class="hp-qread uppercase arial_11 bold">HuffPost's QuickRead...</div>
</div>
<!--'-->
<div class="clear"></div>
<div class="content">
<div id="qr_tab_read" class="qr_tab">
<div id="qr_tab_read_col1" class="column first">
<img class="spinner" alt="" src="http://s.huffpost.com/images/quickview/gear_animation.gif" width="32" height="32" />
</div>
<div class="column last">
<div class="ad_block ad_wide top">
</div>
</div>
<div class="clear"></div>
</div>
<div id="qr_tab_share" class="qr_tab" style="display: none;">
<script type="text/javascript">
ShareBox.ad = function (tag_id)
{
ad_spec = {
"zone_info": "huffpost.business;business=1;latino-voices=1;;entry_id=997793;labor=1;video=1;@depressing=1;@recommend=1;business-news=1;alabama-economy=1;alabama-immigration-law=1;alabama-workers=1;alabama-workers-immigration-law=1;illegal-immigrants=1;immigration-reform=1;undocumented-immigrants=1;undocumented-workers=1",
"ord": 1317943065,
"tile": 3,
"width": 300,
"height": 250,
"el_id": tag_id + "_js",
"class_name": "ad_block ad_wide top",
"type": "iframe"
}
HuffPoUtil.WEDGJE.write(ad_spec, tag_id);
};
</script>
<div id="share_tools_loader">Loading...</div>
<div id="share_tools" class="display_none"></div>
<script type="text/javascript" charset="utf-8">
ShareBox.set_email_class();
var CommentPoller = {
check: function(entry_id)
{
if (document.getElementById('lastComment')) {
var last=document.getElementById('lastComment').innerHTML;
Comments.addCommentMy(entry_id, last, 0);
}
setTimeout("CommentPoller.check(997793);", 30000);
}
}
CommentPoller.check(997793);
/* ShareBox.ad("ad_email"); */
</script> </div>
<div id="qr_tab_news" class="qr_tab" style="display: none;">
<div id="qr_tab_news_col1" class="column first">
<img class="spinner" alt="" src="http://s.huffpost.com/images/quickview/gear_animation.gif" width="32" height="32" />
</div>
<div id="qr_tab_news_col2" class="column last"></div>
</div>
<div class="clear"></div>
</div>
<div id="modal_footer">
<div class="float_left main_img_prev_arrow" onclick="QV.prev()"></div>
<div id="modal_footer_container" class="float_left"></div>
<div class="float_left main_img_next_arrow" onclick="QV.next()"></div>
</div>
</div>
</div>
<!-- /Modal -->
<div id="wrapper">
<!-- HEADER Begin -->
<!-- big-news navigation -->
<div class="arial_12 bold float_left relative edition_nav">
EDITION: U.S. <div class="absolute edition_nav_list">
<a href="http://www.huffingtonpost.com/?country=CA">
<span>CA</span> Canada
</a>
<a href="http://www.huffingtonpost.com/?country=US">
<span>US</span> United States
</a>
<a href="http://www.huffingtonpost.com/?country=UK">
<span>UK</span> United Kingdom
</a>
</div>
</div>
<div class="big-news-container relative" id="topnav_big_news_module">
<div id="big_news_update">
<ul class="big_news_ontop">
<li><a href="/news/deficit/" class="big_news_item first bn_v_business" onclick="HPTrack.trackPageview('/t/a/topnav_bignews/v2');">Deficit</a></li><li><a href="/news/housing-crisis/" class="big_news_item bn_v_business" onclick="HPTrack.trackPageview('/t/a/topnav_bignews/v2');">Housing Crisis</a></li><li><a href="/news/bankruptcy/" class="big_news_item bn_v_business" onclick="HPTrack.trackPageview('/t/a/topnav_bignews/v2');">Bankruptcy</a></li><li><a href="/news/unemployment/" class="big_news_item bn_v_business" onclick="HPTrack.trackPageview('/t/a/topnav_bignews/v2');">Unemployment</a></li></ul>
</div>
<div class="more_in_bignews">
<a href="http://www.huffingtonpost.com/news/blackberry101" class="margin_right_10" onclick="HPTrack.trackPageview('/t/a/topnav_bignews/v2');">BlackBerry 101</a> <a href="/big-news/#business" onclick="HPTrack.trackPageview('/t/a/topnav_bignews/v2');">More</a>
</div>
<div id="not_logged_user" class="login">
<a href="javascript:void(0);" id="hp_login_bt" onclick="ConnectOverview.showBenefits({provider:'signup'});return false;">Log in</a>
</div>
<div id="wendybird_user" class="absolute" style="display:none;">
<ul class="clearfix relative user-nav">
<li class="relative">
<span class="corners_10px counter absolute"></span>
<div class="hidden" id="avatar_logged_in"></div>
</li>
<li class="wendybird_user_data">
<span id="wendybird_user_name"></span>
<div id="social-nav-bar" style="display:none;">
<script type="text/javascript">
(function($) {
var un = HuffCookies.getUserName(),
c = "<div class=\"arrow-user-active\"><\/div><div class=\"user-dropdown absolute\"><div class=\"brd-container\"><ul class=\"snb-container\" id=\"li_alerts\"><li class=\"alerts\"><a href=\"\/social\/{username}?action=notifications\">My Alerts<span class=\"corners_10px count\"><\/span><\/a><\/li><li id=\"snb-comment_replies\"><a href=\"\/social\/{username}?action=notifications#!\/alerts\/new\/comment_replies\">Comment Replies<span><\/span><\/a><div class=\"updates\"><\/div><\/li><li id=\"snb-comment_badges\"><a href=\"\/social\/{username}?action=notifications#!\/alerts\/new\/comment_badges\">Comment Badges<span><\/span><\/a><div class=\"updates\"><\/div><\/li><li id=\"snb-favorited_comments\"><a href=\"\/social\/{username}?action=notifications#!\/alerts\/new\/favorited_comments\">Favorited Comments<span><\/span><\/a><div class=\"updates\"><\/div><\/li><li id=\"snb-new_followers\"><a href=\"\/social\/{username}?action=notifications#!\/alerts\/new\/new_followers\">New Followers<span><\/span><\/a><div class=\"updates\"><\/div><\/li><\/ul><ul class=\"snb-container snb-container-right\" id=\"li_stories\"><li class=\"stories\"><a href=\"\/social\/{username}?action=notifications\">My Stories<span class=\"corners_10px count\"><\/span><\/a><\/li><li id=\"snb-recommendations\"><a href=\"\/social\/{username}?action=notifications#!\/stories\/new\/recommendations\">Stories You Might Like<span><\/span><\/a><div class=\"updates\"><\/div><\/li><li id=\"snb-breaking_news\"><a href=\"\/social\/{username}?action=notifications#!\/stories\/new\/breaking_news\">Breaking News<span><\/span><\/a><div class=\"updates\"><\/div><\/li><\/ul><div class=\"clear-0\"><\/div><\/div><div class=\"get-alerts\"><a class=\"see-all-alerts\" href=\"\/social\/{username}?action=notifications\">See All Alerts<\/a><a class=\"see-all-news\" href=\"\/social\/{username}?action=notifications\">See All News Alerts<\/a><input type=\"text\" value=\"Enter email address\" id=\"navbar_subscribe\" onfocus=\"QuickSubscribeUser.checkInput(this)\" class=\"email input_border color_ACACAC arial_11 padding_top_3 padding_left_3 float_left margin_right_5\" \/><a href=\"javascript:void(0);\" onclick=\"QuickSubscribeUser.pop('_form', '', null, 'navbar_subscribe'); return false;\" class=\"button small white margin_top_1 margin_right_5 text_transf_none\">Get Alerts<\/a><\/div><\/div>".replace(/{username}/g, un),
s = $('#social-nav-bar');
if ( un )
{
s.html(c).css('display', 'inline-block');
SocialNotifications.init(
{
ajax: false });
} else s.empty();
})(jQuery);
</script>
</div>
</li>
<li>
<span class="ccc">|</span>
</li>
<li>
<a href="/users/logout/?referer=%2F" onclick="QuickLogin.SocialLogout('/users/logout/?referer=%2F'); return false;">Sign Out</a>
</li>
</ul>
</div>
<div class="clear"></div>
</div>
<div class="">
<div class="mastheader">
<div class="ad_728_90b_fix">
<table class="margin_auto" cellpadding="0" cellspacing="0" border="0"><tr><td width="102"></td><td width="728"><div id="ad_leaderboard_top" class="ad_wrapper_"> <script type="text/javascript">
if(HPAds.ad_check_page_config('leaderboard_top')) {
htmlAdWH("93314100", "728", "90","fc");
var debugadcode = '';
document.write(debugadcode);
}
</script></div></td><td width="102"></td></tr></table> </div>
<div class="clear"></div>
<!--
--><div id="logo" class="data center georgia_12 margin_top_7 color_747474">
October 6, 2011 <h2 class="margin_top_7">
<a href="/business/">
<img src="http://s.huffpost.com/images/v/logos/bpage/business.gif?9" alt="business" />
<!--
-->
<br/>
<img src="http://s.huffpost.com/images/v/logos/v4/tagline.gif" width="460" height="9" class="margin_top_5" alt="The Huffington Post" />
<!--
--> </a>
</h2>
</div>
</div>
<div class="clearfix margin_top_5 margin_right_10 margin_bottom_10">
<div class="bnpage_vertical_fb_like float_left">
<div id="fb_like_vertical" fblike_params='{"width":"90","height":"20","show_faces":"false","href":"http:\/\/www.facebook.com\/HuffingtonPost","background_color":"#cccccc","font":"Trebuchet","layout":"button_count","vertical_id":-1}' class="float_left i_v_fb_like like_fb_like_action i_v_with_count" onmouseover="HPFB.likeButton_v2(this, 'like', 0);">
<div class="relative">
<div class="facebook_like_button connect_widget button_count">
<div class="connect_button_slider float_left">
<div class="connect_button_container">
<a href="javascript:void(0);" class="connect_widget_like_button clearfix like_button_no_like"><span class="liketext">Like</span></a>
</div>
</div>
<div class="connect_widget_button_count_nub"><s></s><i></i></div>
<div class="connect_widget_button_count_count">448K</div>
</div>
<div class="fb_like_xml absolute"></div>
</div>
</div>
<script type="text/javascript">
jQuery('#fb_like_vertical').mouseenter(function() {
var html = '<div id="fb-tooltip" class="fb-tooltip-main"><div class="fb-tooltip-wrapper"><span>Follow us on Facebook</span><br/>Get updates from HuffPost posted directly to your News Feed.<div class="corner"><div class="first"></div><div class="second"></div></div></div></div>';
var coords = [-5, -78];
if( HPConfig.current_vertical_name == 'homepage' ) {
coords = [-5, -70];
}
// display fb-bubble
FloatingPrompt.embed(this, html, undefined, 'top', {fp_intersects:1, timeout_remove:2000,ignore_arrow: true, width:236, add_xy:coords, class_name: 'clear-overlay'});
});
</script>
<div id="twitter-follow-button-311580490" class="twttr-fw-btn">
<div id="frame-twitter-follow-button-311580490" class="hidden"></div>
<div class="container">
<a class="fw-button" title="Follow @HuffPostBiz on Twitter" onmouseover="HPTwitter.Widgets.activateFollowButton({'node_id':'twitter-follow-button-311580490','query':'show_count=false&show_screen_name=false&text_color=dark&button=blue&lang=en&screen_name=HuffPostBiz','style':'style=\'height:20px;max-width:225px;\''});"> </a>
</div>
</div>
</div>
<!-- Top nav -->
<div class="hidden" id="avatar_logged_in"></div>
<div id="social_buttons" class="connect">
<span class="bold arial_12">CONNECT</span>
<a href="/social/join.html?autojoin=1" onclick="linkSocialAccount.checkLoginStatus('facebook'); return false;" id="fb_social" class="face provider_nav_btn"> </a>
<a href="/social/join.html?autojoin=1" onclick="linkSocialAccount.checkLoginStatus('twitter'); return false;" id="tw_social" class="twit provider_nav_btn"> </a>
</div>
<div class="search-huffpost nofloat">
<form action="http://search.huffingtonpost.com/search?" class="margin_auto">
<input type="text" name="q" class="inp-text" onfocus="if(this.value=='Search the Huffington Post')this.value=''" value="Search the Huffington Post" />
<input type="submit" value="" class="search-submit" />
<input type="hidden" name="s_it" value="header_form_v1" />
</form>
</div>
</div>
<script type="text/javascript">
HPUtil.initUserNavStatus(false);
</script>
</div>
<!-- HEADER End -->
<div id="top_nav" class="top_nav_menu">
<!--
-->
<div class="topnav_first_row clearfix">
<ul class="jd_menu jd_menu_slate relative">
<li class="n_home first" id="li_homepage" style="color:#004c41;">
<a class="a_home" id="n_home_link" href="/" title="Home">FRONT PAGE</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:79px;">
<a href="http://www.huffingtonpost.com/?country=UK" class="black border_dotted_ccc">UK</a>
<a href="http://www.huffingtonpost.com/?country=US" class="black border_dotted_ccc">U.S.</a>
<a href="http://www.huffingtonpost.com/?country=CA" class="black">CANADA</a>
</li>
</ul>
</li>
<li class="n_pol" id="li_politics">
<a class="a_pol" href="/politics/">POLITICS</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:130px;">
<a href="/politics/" class="black border_dotted_ccc">POLITICS</a>
<a href="http://www.huffingtonpost.com/hill/signup.html" class="black border_dotted_ccc">HUFFPOST HILL</a>
<a href="http://www.huffingtonpost.com/news/elections-2012/" class="black">2012 ELECTIONS</a>
</li>
<li class="center" style="border-right:medium none; width:130px;">
<a href="/green/" class="black border_dotted_ccc">GREEN</a>
<a href="http://www.huffingtonpost.com/news/pollster/" class="black border_dotted_ccc">POLLSTER</a>
<a href="http://www.huffingtonpost.com/news/2012-speculatron/" class="black">SPECULATRON</a>
</li>
</ul>
</li>
<li class="n_biz" id="li_business">
<a class="a_biz" href="/business/">BUSINESS</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:138px;">
<a href="http://www.dailyfinance.com/" class="black border_dotted_ccc">DAILYFINANCE</a>
<a href="/small-business/" class="black border_dotted_ccc dd-biz">SMALL BUSINESS</a>
<a href="http://www.autoblog.com/" class="black">AUTOBLOG</a>
</li>
<li class="center" style="border-right:medium none; width:138px;">
<a href="http://realestate.aol.com/" class="black border_dotted_ccc">REAL ESTATE</a>
<a href="http://jobs.aol.com/" class="black border_dotted_ccc">JOBS</a>
<a href="http://www.huffingtonpost.com/news/thewatchdog/" class="black">THE WATCHDOG</a>
</li>
</ul>
</li>
<li class="n_ent" id="li_entertainment">
<a class="a_ent" href="/entertainment/">ENTERTAINMENT</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:115px;">
<a href="/celebrity/" class="black border_dotted_ccc">CELEBRITY</a>
<a href="/entertainment/" class="black border_dotted_ccc">ENTERTAINMENT</a>
<a href="http://music.aol.com/" class="black">MUSIC</a>
</li>
<li class="center" style="border-right:medium none; width:115px;">
<a href="http://moviefone.com/" class="black border_dotted_ccc">MOVIES</a>
<a href="http://television.aol.com/" class="black border_dotted_ccc">TV</a>
<a href="http://www.games.com/" class="black">GAMES.COM</a>
</li>
</ul>
</li>
<li class="n_technology" id="li_technology">
<a class="a_tech" href="/tech/">TECH</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:120px;">
<a href="/tech/" class="black border_dotted_ccc">HUFFPOST TECH</a>
<a href="http://www.engadget.com/" class="black border_dotted_ccc">ENGADGET</a>
<a href="http://www.tuaw.com/" class="black">APPLE BLOG</a>
</li>
<li class="center" style="border-right:medium none; width:120px;">
<a href="http://techcrunch.com/" class="black border_dotted_ccc">TECHCRUNCH</a>
<a href="http://www.joystiq.com/" class="black border_dotted_ccc">JOYSTIQ</a>
<a href="http://translogic.aolautos.com/" class="black">TRANSLOGIC</a>
</li>
</ul>
</li>
<li class="n_media" id="li_media">
<a class="a_media" href="/media/">MEDIA</a>
</li>
<li class="n_style" id="li_style">
<a class="a_style" href="/style/">LIFE & STYLE</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:120px;">
<a href="/style/" class="black border_dotted_ccc">STYLE NEWS</a>
<a href="http://www.stylelist.com/" class="black border_dotted_ccc">STYLELIST</a>
<a href="/food/" class="black border_dotted_ccc">FOOD</a>
<a href="/weddings/" class="black border_dotted_ccc dd-hp-w">WEDDINGS</a>
<a href="/green/" class="black border_dotted_ccc">GREEN</a>
<a href="/impact/" class="black">IMPACT</a>
</li>
<li class="center" style="border-right:medium none; width:120px;">
<a href="/travel/" class="black border_dotted_ccc">TRAVEL</a>
<a href="http://www.stylelist.com/home/" class="black border_dotted_ccc">STYLELIST HOME</a>
<a href="http://www.kitchendaily.com/" class="black border_dotted_ccc">RECIPES</a>
<a href="/divorce/" class="black border_dotted_ccc">DIVORCE</a>
<a href="/50/" class="black border_dotted_ccc dd-hp-f">HUFF/POST50</a>
<a href="/religion/" class="black">RELIGION</a>
</li>
</ul>
</li>
<li class="n_culture" id="li_culture">
<a class="a_culture" href="/culture/">CULTURE</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:110px;">
<a href="/arts/" class="black border_dotted_ccc">ARTS</a>
<a href="/parents/" class="black border_dotted_ccc">PARENTS</a>
<a href="/travel/" class="black border_dotted_ccc">TRAVEL</a>
<a href="/college/" class="black">COLLEGE</a>
</li>
<li class="center" style="border-right:medium none; width:110px;">
<a href="/religion/" class="black border_dotted_ccc">RELIGION</a>
<a href="/impact/" class="black border_dotted_ccc">IMPACT</a>
<a href="/books/" class="black border_dotted_ccc">BOOKS</a>
<a href="/education/" class="black ">EDUCATION</a>
</li>
</ul>
</li>
<li class="n_comedy" id="li_comedy">
<a class="a_comedy" href="/comedy/">COMEDY</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:95px;">
<a href="http://www.huffingtonpost.com/news/urlesque/" class="black">URLESQUE</a>
</li>
</ul>
</li>
<li class="n_healthy-living" id="li_healthy-living">
<a class="a_healthy-living" href="/healthy-living/">HEALTHY LIVING</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:105px;">
<a href="http://www.huffingtonpost.com/news/healthy-living-body/" class="black border_dotted_ccc">BODY</a>
<a href="http://www.huffingtonpost.com/news/healthy-living-spirit/" class="black">SPIRIT</a>
</li>
<li class="center" style="border-right:medium none; width:105px;">
<a href="http://www.huffingtonpost.com/news/healthy-living-mind/" class="black border_dotted_ccc">MIND</a>
<a href="http://www.huffingtonpost.com/news/healthy-living-health-news/" class="black">HEALTH NEWS</a>
</li>
</ul>
</li>
<li class="n_women" id="li_women">
<a class="a_women" href="/women/">WOMEN</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:125px;">
<a href="/healthy-living/" class="black border_dotted_ccc">HEALTHY LIVING</a>
<a href="/parents/" class="black">PARENTS</a>
</li>
</ul>
</li>
<li class="n_local " id="li_local">
<a class="a_local" href="/local/">LOCAL</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:110px;">
<a href="/new-york/" class="black border_dotted_ccc">NEW YORK</a>
<a href="/san-francisco/" class="black border_dotted_ccc">SAN FRANCISCO</a>
<a href="/denver/" class="black border_dotted_ccc">DENVER</a>
<a href="http://www.patch.com/" class="black border_dotted_ccc">PATCH</a>
<a href="/travel/" class="black">TRAVEL</a>
</li>
<li class="center" style="border-right:medium none; width:110px;">
<a href="/chicago/" class="black border_dotted_ccc">CHICAGO</a>
<a href="/los-angeles/" class="black border_dotted_ccc">LOS ANGELES</a>
<a href="/dc/" class="black border_dotted_ccc">DC</a>
<a href="http://www.mapquest.com/" class="black border_dotted_ccc">MAPQUEST</a>
<a href="http://yellowpages.aol.com/" class="black">YELLOW PAGES</a>
</li>
</ul>
</li>
<li class="n_more last" id="li_more">
<a class="a_more" href="javascript:void(0);">MORE</a>
<ul class="absolute white_bg dropdown-shadow rounded_bottom_4" style="display:none; border-right:2px solid rgb(160,161,162); border-bottom:2px solid rgb(160,161,162); border-left:2px solid rgb(160,161,162);">
<li class="center border_right_ccc" style="width:110px;">
<a href="/black-voices/" class="black border_dotted_ccc">BLACKVOICES</a>
<a href="/sports/" class="black border_dotted_ccc">SPORTS</a>
<a href="/world/" class="black border_dotted_ccc">WORLD</a>
<a href="/education/" class="black border_dotted_ccc">EDUCATION</a>
<a href="/gay-voices/" class="black dd-hp-gv">GAY VOICES</a>
</li>
<li class="center" style="border-right:medium none; width:110px;">
<a href="/latino-voices/" class="black border_dotted_ccc dd-lv">LATINOVOICES</a>
<a href="/college/" class="black border_dotted_ccc">COLLEGE</a>
<a href="/crime/" class="black border_dotted_ccc">CRIME</a>
<a href="/weird-news/" class="black border_dotted_ccc">WEIRD NEWS</a>
<a href="/high-school/" class="black dd-hp-hs">HIGH SCHOOL</a>
</li>
</ul>
</li>
</ul>
</div><!--
-->
<div class="new-topnav_second_row clearfix">
<div class="float_left margin_left_5 margin_right_5">
</div>
<div class="float_left featured margin_left_5">
<span class="ftd">
<a href="http://www.huffingtonpost.com/business/">BUSINESS</a> </span>
<a href="http://www.huffingtonpost.com/small-business/" class="bold ftd_small-business">SMALL BUSINESS</a>
<a href="http://www.dailyfinance.com/" class="bold ftd_dailyfinance">DAILYFINANCE</a>
<a href="http://realestate.aol.com/" class="bold ftd_real-estate">REAL ESTATE</a>
<a href="http://www.huffingtonpost.com/news/thewatchdog/" class="bold ftd_the-watchdog">THE WATCHDOG</a>
<a href="/tech/" class="bold ftd_huffpost-tech">HUFFPOST TECH</a>
<a href="http://www.techcrunch.com/" class="bold ftd_techcrunch">TECHCRUNCH</a>
<a href="http://www.autoblog.com/" class="bold ftd_autoblog">AUTOBLOG</a>
</div>
</div>
</div>
<div class="clear"></div><div id="curtain_wrapper"><div id="curtainunit"></div></div>
<!-- AVATAR LOADER -->
<script type="text/javascript">
HuffPoUtil.AvatarLoader.loadAvatar('http://www.huffingtonpost.com');
</script>
<!-- /Top nav -->
<div id="wrapper_inner">
<div class="clear knockdown">
<script type="text/javascript">
var extra_view = false;
if (document.referrer != '' && typeof(document.referrer) == 'string') {
if (document.referrer.indexOf(window.location.hostname) != -1 && document.referrer.indexOf(window.location.pathname) != -1) {
extra_view = true;
}
}
var stats_project_image_src = "http://entry-stats.huffpost.com/?997793&statsentryview" + Math.random().toString(16).replace('0.','') + '&';
if (document.referrer != '') {
stats_project_image_src += escape(document.referrer);
}
stats_project_image_src += '&' + extra_view.toString();
document.write('<img src="'+ stats_project_image_src +'" width="1" height="1" style=\"height:1px; line-height:1px; overflow:hidden\" />');
// SNP tracking
SNProject.track('997793','entry_view',0);
ViewTracker.VerticalType = "5";
ViewTracker.AddView();
</script>
<noscript>
<img src="http://entry-stats.huffpost.com/?997793&&&false" width="1" height="1" alt="" />
</noscript>
<!-- /stats project 1 -->
</div>
<div class="clear"></div>
<!-- Placeholder for promo on entry -->
<div id="huff_promo_space"></div>
<div class="clear"></div>
<div id="threeup_top_wrapper" class="threeup-bl mnid-threeup_top_wrapper plid-1">
<div id="threeup_left_nav" class="">
<a href="#" onclick="HPTrack.trackPageview('/t/a/threeupnav.v2/left.v2/Business'); return false;" class="vertical_background_light lnid-threeup_left_nav arrow"></a>
</div>
<div id="threeup_right_nav" class="">
<a href="#" onclick="HPTrack.trackPageview('/t/a/threeupnav.v2/right.v2/Business'); return false;" class="vertical_background_light lnid-threeup_right_nav arrow"></a>
</div>
<div id="threeup_wide_container">
<div id="threeup_content"><!-- this content will be replaced --></div>
</div>
</div> <div class="clear_first border_bottom_ccc"></div>
<br/>
<!-- Design style from perl code: -->
<div class="grid two_thirds flush_top" id="news_content">
<!--ASKCRAWL-->
<!-- Entries -->
<div id="news_entries">
<!-- Reporter -->
<!-- Entry -->
<div class="entry" id="entry_12345">
<div class="col entry_right full">
<h1 class="title-news">
Alabama Workers Leave State As Immigration Law Takes Effect
</h1>
<!-- Large image -->
<div class="margin_bottom_10 relative">
<img width="570" src="http://i.huffpost.com/gen/369284/thumbs/r-ALABAMA-WORKERS-IMMIGRATION-LAW-large570.jpg" alt="Alabama Workers Immigration Law" id="img_caption_997793" />
<div id="caption_997793" class="absolute large-image-caption white_bg arial_11 color_333333" style="display:none;">
In a Monday, Oct. 3, 2011 photo, Juan Gonzalez sorts tomatoes in Steele, Ala.. Only a few of farm owner Leroy Smith's field workers showed up for work after Alabama's new immigration law took effect last week. Hispanic workers and their children are fleeing Alabama or going into hiding because of the state's strict new immigration law, which will surely deal a significant blow to the state's economy and may slow the rebuilding of Tuscaloosa and other tornado-damaged cities.
</div>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#img_caption_997793").mouseenter(function(){
jQuery('#caption_997793').fadeIn(100);
}).mouseleave(function(e){
if( e.relatedTarget.id == 'caption_997793' ) return false;
jQuery('#caption_997793').fadeOut(100);
});
jQuery('#caption_997793').mouseleave(function(e){
if( e.relatedTarget.id != 'img_caption_997793' )
jQuery('#caption_997793').fadeOut(100);
});
});
</script>
</div>
<div class="comments_datetime relative v05">
<p>
<span class="bold color_1A1A1A">By PHILLIP RAWLS</span> <span class="vborder-dashed margin_0_5"> </span> 10/ 5/11 09:19 PM ET <span class="vborder-dashed margin_0_5"> </span>
<span class="ap"><img width="18" height="18" src="http://s.huffpost.com/images/v/ap_wire.png" alt="AP" /></span>
</p>
<a class="print-link absolute" rel="nofollow" href="?view=print"></a>
</div>
<div class="read_more_top v05"></div>
<div class="clear"></div>
<div class="float_left follow_tags_headline margin_top_4">
<div class="float_left margin_right_3 arial_14">React</div>
<img src="/images/bignews/follow-arrow.png" class="margin_right_3 padding_top_2" width="8" height="12" />
<div class="clear"></div>
</div>
<!-- facebook vote -->
<div class="reaction_pannel_v3 facebookvote_v2 business_vertical_bg_link">
<script type="text/javascript">
HPFacebookVoteV2.init(997793, 'Alabama Workers Leave State As Immigration Law Takes Effect', 'MONTGOMERY, Ala. -- Alabama\\\'s strict new immigration law may be backfiring. Intended to force illegal workers out of jobs, it is also driving away many construction workers, roofers and field hands in the country legally who do backbreaking jobs that Americans generally won\\\'t. The vacancies have created a void that will surely deal a blow to the state\\\'s economy and could slow the rebuilding of Tuscaloosa and other tornado-damaged cities.', 'http://www.huffingtonpost.com/2011/10/06/alabama-workers-immigration-law_n_997793.html', 'http://i.huffpost.com/gen/369284/thumbs/s-ALABAMA-WORKERS-IMMIGRATION-LAW-small.jpg', 'Please join me at <a href="http://www.huffingtonpost.com/">Huffington Post</a>!', 'news', ["Inspiring","Greedy","Typical","Scary","Outrageous","Amazing","Innovative","Infuriating"]);
</script><a href="#" id="link_vote_0" onclick="HPFacebookVoteV2.onVote(0); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Inspiring">Inspiring<br/></a>
<a href="#" id="link_vote_1" onclick="HPFacebookVoteV2.onVote(1); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Greedy">Greedy<br/></a>
<a href="#" id="link_vote_2" onclick="HPFacebookVoteV2.onVote(2); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Typical">Typical<br/></a>
<a href="#" id="link_vote_3" onclick="HPFacebookVoteV2.onVote(3); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Scary">Scary<br/></a>
<a href="#" id="link_vote_4" onclick="HPFacebookVoteV2.onVote(4); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Outrageous">Outrageous<br/></a>
<a href="#" id="link_vote_5" onclick="HPFacebookVoteV2.onVote(5); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Amazing">Amazing<br/></a>
<a href="#" id="link_vote_6" onclick="HPFacebookVoteV2.onVote(6); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Innovative">Innovative<br/></a>
<a href="#" id="link_vote_7" onclick="HPFacebookVoteV2.onVote(7); HPTrack.trackPageview('/t/a/facebook_reactions/v1/'); return false;" title="Infuriating">Infuriating<br/></a>
</div>
<div class="clear_first"></div>
<div class="read_more with_verticals clearfix">
<div class="float_left follow_tags_headline normal_weight">
<div class="float_left margin_right_3 arial_14">Follow</div>
<img src="/images/bignews/follow-arrow.png" width="8" height="12" class="margin_right_3 padding_top_2" />
<div class="clear"></div>
</div>
<div class="float_left follow_tags_cont_regular">
<span onmouseout="return HPFB.follow_bignews_page_mouseout(event);" onmouseover="return HPFB.follow_bignews_page(event);">
<span class="follow_bignews_wrapper" hovercard_params='{"tag_url":"/news/labor","tag_name":"Labor", "root_tag_id":"405"}'>
<a onclick="return HPFB.follow_bignews_page(event);" href="/news/labor" class="follow_bignews"> </a>
<a href="/news/labor" class="follow_bignews_link">
Labor
</a>
</span>