summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/webmd-1/source.html
blob: 0b50ccc54a6524241102d4afb0c179193d803287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" class="no-js">
    
    <head>
        <title>Babies Who Eat Peanuts Early May Avoid Allergy</title>
        <meta http-equiv="X-UA-Compatible"
        content="IE=Edge"/>
        <script type="text/javascript">
            var s_topic="1625"
             ,s_business_reference="News"
             ,s_publication_source="WebMD Health News"
             ,s_sponsor_brand="Dey_EpiPen"
             ,s_sponsor_program="Dey_EpiPen_Patient Select Allergies"
             ,s_package_type="topic targeted - sp"
             ,s_package_name=""
             ,s_channel_super_portal=""
             ,s_channel_health="Allergies"
             ,s_channel_topic_miniguide_guide=""
             ,s_channel_mini=""
             ,s_channel_micro=""
             ,s_tug="2321"
             ,s_topic_dir="false"
             ,s_mrt=""
             ,s_site="core"
             ,s_assetname=""
             ,s_searchterm="";
        </script>
        <script language="javascript" type="text/javascript">
            var s_furl="/allergies/news/20150220/child-peanut-allergy-findings"; var s_sponsor_program=""; var s_sensitive="false"; var s_mrt=""; var image_server_url="http://img.webmd.com/dtmcms/live";var s_uk_user="false";
        </script>
        <meta name="description" content="Life-threatening peanut allergies have mysteriously been on the rise in the past decade, with little hope for a cure. But a groundbreaking new study may offer a way to stem that rise, while another may offer some hope for those who are already allergic."/>
        <meta name="keywords" content="peanuts, peanut allergy, eczema, peanut allergies, babies and peanuts"/>
        <link rel="alternate" type="application/rss+xml" title="RSS" href="http://rssfeeds.webmd.com/rss/rss.aspx?RSSSource=RSS_PUBLIC"/>
        <link rel="alternate" media="only screen and (max-width: 640px)" href="http://www.m.webmd.com/allergies/news/20150220/child-peanut-allergy-findings"/>
        <script language="javascript1.2" type="text/javascript">
            <!-- 
             var center="health"; var center_name="Allergies"; var center_id=893; var center_prefix="www"; var center_url="/allergies/default.htm";//-->
        </script>
        <meta http-equiv="CACHE-CONTROL" content="NO-CACHE"/>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <link rel="shortcut icon" href="http://img.webmd.com/dtmcms/live/images/favicon/webmd.ico"/>
        <link href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/layout.css"
        type="text/css" rel="stylesheet"/>
        <link rel="apple-touch-icon-precomposed" href="/favico/apple-touch-icon-precomposed.png"/>
        <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/favico/apple-touch-icon-72x72-precomposed.png"/>
        <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/favico/apple-touch-icon-114x114-precomposed.png"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Site/WebMD_091e9c5e8004a22432.css"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News CAP/page_Allergies News CAP_091e9c5e80030184_psmodules_css_1224.css"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Base Template/template_Base Template_091e9c5e80020366_tmodules_css_4157.css"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies Health Center/template_Allergies Health Center_091e9c5e80022c47_tmodules_css_4718.css"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News/template_Allergies News_091e9c5e8002e053_tmodules_css_1593.css"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS_Aggr/Allergies News CAP/page_Allergies News CAP_091e9c5e80030184_pmodules_css_3838.css"/>
        <link rel="stylesheet" type="text/css" href="http://css.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/Atlanta/reskin/reskin12.css"/>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/webmd.dynamicMobileThrottling.min13.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/scripts373.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/masthead36.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/reskin/reskin14.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/modules/webmd.m.mostPopSS9.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/guide_navigation42.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas69.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/topic-directory/webmd.m.dynamicnav17.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/topic-directory/webmd.m.dynrelart28.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/modules/answers3_promo17.js"></script>
        <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/hover-reg32.js"></script>
    </head>
    
    <body>
        <div id="centering_area">
            <div id="page_area">
                <div id="bannerAd_ctr">
                    <div id="ContentPane1">
                        <script type="text/javascript">
                            // write mboxes for OTT
                            if (window.$ && window.webmd && window.mboxCreate) {
                            	if (window.webmd.mbox) {
                            		webmd.mbox.init();
                            	}
                            }
                        </script>
                        <!-- define the Facebook share thumbnail -->
                        <link rel="image_src" href="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/miscellaneous/webmd_FB_logo_bluebkgrd.jpg?v=1"/>
                        <!--<ul><li>$adsystem = DFP</li><li>$pos = 101</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 90</li><li>iframewidth = 728</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 101</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
                        <script>
                            var priTopId='1625', secTopId='';
                        </script>
                        <div id="bannerAd_rdr">
                            <div class="bannerAd_top_fmt"></div>
                            <div id="bannerAd_fmt" class="bannerAd_BG_fmt loaded">
                                <div id="ads2-pos-101-bannerAd" class="ad_placeholder"></div>
                            </div>
                        </div>
                        <script>
                            webmd.ads2Consumer.defineAd({targets:{art:'091e9c5e810fb2ee',cc:'17',env:'',hcent:'893',leaf:'&amp;leaf=',mcent:'',mic:'',pt:'1625',sec:'',pug:'__',scent:'',tmg:'',tug:'2321',uri:'%2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings'},blockCodes:'_age121_l23_age122_j30_t780_',id:'ads2-pos-101-bannerAd',pos:'101',sizes:[[728,90],[970, 90],[970,250]]});
                        </script>
                    </div>
                </div>
                <div id="header_ctr">
                    <div id="ContentPane2">
                        <header id="masthead" class="bottom_header">
                            <div id="global_overlay"></div><a href="#mainContentContainer_area" class="jawsonly">Skip to content</a>
                            <div
                            id="banner" role="banner">
                                <div id="logo"><a onclick="sl(this,'','logo')" href="http://www.webmd.com/www/default.htm"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/usability/2012/LBi_Masthead/logo_trans.png" class="logo_rdr" alt="WebMD: Better information. Better health."/></a>
                                </div>
                                <div id="search_container" role="search">
                                    <form action="http://www.webmd.com/search/search_results/default.aspx"
                                    method="get" name="searchForm">
                                        <label class="jawsonly" for="searchQuery_fmt">Enter Search Keywords. Use the arrow keys to navigate suggestions.</label>
                                        <input
                                        type="text" id="searchQuery_fmt" name="query" maxlength="200" value=""
                                        autocomplete="off" title="Enter Search Keywords"/>
                                            <input type="submit" class="searchButton_fmt" name="searchButton_fmt"
                                            value="" title="Search" onclick="return sl(this,'','srch-bar_submit')"/>
                                    </form>
                                    <ul id="searchTypeahead_fmt" aria-live="assertive"></ul>
                                </div>
                                <div id="lln-srchbarlnks"><a onclick="return sl(this,'','lln-srchbarlnks_schk')" class="lln-symptoms"
                                    href="http://www.webmd.com/symptoms/default.htm">Symptoms</a><span class="pipe">|</span> 
                                    <a
                                    onclick="return sl(this,'','lln-srchbarlnks_phyd')" class="lln-doctors"
                                    href="http://doctor.webmd.com/home">Doctors</a><span class="pipe">|</span>  <a onclick="return sl(this,'','lln-srchbarlnks_hins')"
                                        class="lln-insurance" href="http://www.webmd.com/health-insurance/default.htm">Health Care Reform</a>
                                </div>
                    </div>
                    <nav id="nav" role="navigation">
                        <ul>
                            <li id="nav_1" class="nav nav_reference"><a href="http://www.webmd.com/a-to-z-guides/common-topics/default.htm"
                                id="nav_link_1" aria-haspopup="true" class="nav_link" onclick="return sl(this,'','hicb1-tab')">Health A-Z</a>
                                <div
                                id="menu_1" class="nav_dropdown" role="menu" aria-expanded="false" aria-hidden="true">
                                    <div class="nav_dropdown_col_1a">
                                        <div id="nav_1_1">
                                            <p>Common Conditions</p><span><a href="http://www.webmd.com/a-to-z-guides/common-topics/default.htm" onclick="return sl(this,'','hicb1-ccnd_more')">View All</a></span>
                                            <ul
                                            class="half" role="menu">
                                                <li><a href="http://www.webmd.com/add-adhd/default.htm" onclick="return sl(this,'','hicb1-ccnd_1')">ADD/ADHD</a>
                                                </li>
                                                <li><a href="http://www.webmd.com/allergies/default.htm" onclick="return sl(this,'','hicb1-ccnd_2')">Allergies</a>
                                                </li>
                                                <li><a href="http://www.webmd.com/arthritis/default.htm" onclick="return sl(this,'','hicb1-ccnd_3')">Arthritis</a>
                                                </li>
                                                <li><a href="http://www.webmd.com/cancer/default.htm" onclick="return sl(this,'','hicb1-ccnd_4')">Cancer</a>
                                                </li>
                                                <li><a href="http://www.webmd.com/cold-and-flu/default.htm" onclick="return sl(this,'','hicb1-ccnd_5')">Cold, Flu &amp; Cough</a>
                                                </li>
                                                <li><a href="http://www.webmd.com/depression/default.htm" onclick="return sl(this,'','hicb1-ccnd_6')">Depression</a>
                                                </li>
                                                <li><a href="http://www.webmd.com/diabetes/default.htm" onclick="return sl(this,'','hicb1-ccnd_7')">Diabetes</a>
                                                </li>
                        </ul>
                        <ul class="half" role="menu">
                            <li><a href="http://www.webmd.com/eye-health/default.htm" onclick="return sl(this,'','hicb1-ccnd_8')">Eye Health</a>
                            </li>
                            <li><a href="http://www.webmd.com/heart-disease/default.htm" onclick="return sl(this,'','hicb1-ccnd_9')">Heart Disease</a>
                            </li>
                            <li><a href="http://www.webmd.com/heartburn-gerd/default.htm" onclick="return sl(this,'','hicb1-ccnd_10')">Heartburn/GERD</a>
                            </li>
                            <li><a href="http://www.webmd.com/pain-management/default.htm" onclick="return sl(this,'','hicb1-ccnd_11')">Pain Management</a>
                            </li>
                            <li><a href="http://www.webmd.com/sexual-conditions/default.htm" onclick="return sl(this,'','hicb1-ccnd_12')">Sexual Conditions</a>
                            </li>
                            <li><a href="http://www.webmd.com/skin-problems-and-treatments/default.htm"
                                onclick="return sl(this,'','hicb1-ccnd_13')">Skin Problems</a>
                            </li>
                            <li><a href="http://www.webmd.com/sleep-disorders/default.htm" onclick="return sl(this,'','hicb1-ccnd_14')">Sleep Disorders</a>
                            </li>
                        </ul>
                        </div>
                        <div id="nav_1_2">
                            <p>Featured Topics</p>
                            <ul role="menu">
                                <li id="pb1" class="hide_link"><a href="http://www.webmd.com/allergies/ss/slideshow-bad-bugs" class="type_ss"
                                    onclick="return sl(this,'','hicb1-ftpc_1')">Identifying Bugs and Their Bites <i></i></a>
                                </li>
                                <li id="pb2" class="hide_link"><a href="http://www.webmd.com/women/yeast-evaluator/default.htm" onclick="return sl(this,'','hicb1-ftpc_2')">Bothered by Yeast Infections?</a>
                                </li>
                                <li id="pb3" class="hide_link"><a href="http://www.webmd.com/pain-management/ss/slideshow-worst-shoes-for-your-feet"
                                    class="type_ss" onclick="return sl(this,'','hicb1-ftpc_3')">The Worst Shoes for Your Feet <i></i></a>
                                </li>
                            </ul>
                        </div>
                        </div>
                        <div class="nav_dropdown_col_2a" id="symptom_checker_col">
                            <div id="nav_1_3"><a href="http://www.webmd.com/symptoms/default.htm" id="symptom_checker_logo"
                                onclick="return sl(this,'','hicb1-schk_1')">WebMD Symptom Checker</a>
                                <p
                                class="bold">Health concern on your mind?</p>
                                    <p>See what your medical symptoms could mean, and learn about possible conditions.</p>
                                    <a
                                    href="http://www.webmd.com/symptoms/default.htm" class="webmd-btn webmd-btn-pr webmd-btn-m"
                                    onclick="return sl(this,'','hicb1-schk_sub')">Get Started</a>
                            </div>
                        </div>
                        <div class="nav_dropdown_col_3">
                            <div id="nav_1_4">
                                <p>Resources</p>
                                <ul role="menu">
                                    <li><a href="http://www.webmd.com/blogs/default.htm" onclick="return sl(this,'','hicb1-xchng_blg')"><strong>Second Opinion:</strong> Read expert perspectives on popular health topics.</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/exchanges/default.htm" onclick="return sl(this,'','hicb1-xchng_cmty')"><strong>Communities:</strong> Connect with people like you, and get expert guidance on living a healthy life.</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/health-insurance/default.htm" onclick="return sl(this,'','hicb1-ins_ctr')"><strong>Insurance Guide:</strong> Get ready for changes to your health care coverage.</a>
                                    </li>
                                    <li><a href="http://doctor.webmd.com" onclick="return sl(this,'','hicb1-phy_dir')"><strong>Physician Directory:</strong> Find a doctor in your area.</a>
                                    </li>
                                </ul>
                            </div>
                            <div id="nav_1_6">
                                <p>WebMD Pain Coach</p><a href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')"
                                class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_pain_app.jpg" alt="WebMD pain app"/></a> 
                                <a
                                href="http://www.webmd.com/webmdpaincoachapp" onclick="return sl(this,'','hicb1-app_1')">Track your pain levels, triggers, and treatments. Set goals and get tips
                                    with our app for iPhone.</a>
                            </div>
                        </div>
                </div>
                </li>
                <li id="nav_2" class="nav nav_reference"><a href="http://www.webmd.com/drugs/index-drugs.aspx" id="nav_link_2"
                    class="nav_link" aria-haspopup="true" onclick="return sl(this,'','hicb2-tab')">Drugs &amp; Supplements</a>
                    <div
                    id="menu_2" class="nav_dropdown" role="menu" aria-expanded="false" aria-hidden="true">
                        <div class="nav_dropdown_col_1a">
                            <div id="nav_2_1">
                                <p>Find Information About:</p>
                                <p class="bold">Drugs &amp; Supplements</p>
                                <p>Get information and reviews on prescription drugs, over-the-counter medications,
                                    vitamins, and supplements. Search by name or medical condition.</p>
                                <ul
                                role="menu" class="bottom_border">
                                    <li><a href="http://www.webmd.com/drugs/index-drugs.aspx" onclick="return sl(this,'','hicb2-drgsp_1')">Find or Review a Drug</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/vitamins-supplements/default.aspx" onclick="return sl(this,'','hicb2-drgsp_2')">Find or Review a Vitamin or Supplement</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/interaction-checker/default.htm" onclick="return sl(this,'','hicb2-drgsp_3')">Check for Drug Interactions</a>
                                    </li>
                                    </ul>
                                    <p class="bold">Drug Basics &amp; Safety</p>
                                    <ul role="menu">
                                        <li><a href="http://www.webmd.com/a-to-z-guides/ss/slideshow-commonly-abused-drugs"
                                            onclick="return sl(this,'','hicb2-drgsf_1')" class="type_ss">Commonly Abused Drugs <i></i></a>
                                        </li>
                                        <li><a href="http://www.webmd.com/drug-medication/medicationawareness/default.htm"
                                            onclick="return sl(this,'','hicb2-drgsf_2')">What's Your Medication IQ?</a>
                                        </li>
                                        <li><a href="http://www.webmd.com/baby/taking-prescription-medications-during-pregnancy"
                                            onclick="return sl(this,'','hicb2-drgsf_3')">Taking Medications During Pregnancy</a>
                                        </li>
                                    </ul>
                            </div>
                        </div>
                        <div id="pill_identifier_col" class="nav_dropdown_col_2a">
                            <div id="nav_2_2" class="bottom_border pill_identifier_section"><a href="http://www.webmd.com/pill-identification/default.htm" id="pill_identifier_logo"
                                onclick="return sl(this,'','hicb2-pid_1')">WebMD Pill Identifier</a>
                                <p
                                class="bold">Having trouble identifying your pills?</p>
                                    <p>Enter the shape, color, or imprint of your prescription or OTC drug. Our
                                        <a
                                        href="http://www.webmd.com/pill-identification/default.htm" onclick="return sl(this,'','hicb2-pid_2')">pill identification tool</a>will display pictures that you can compare
                                            to your pill.</p><a href="http://www.webmd.com/pill-identification/default.htm"
                                    class="webmd-btn webmd-btn-pr webmd-btn-m" onclick="return sl(this,'','hicb2-pid_sub')">Get Started</a>
                            </div>
                            <div id="nav_2_5" class="my_medicine_section"><a href="http://www.webmd.com/my-medicine/default.htm" id="my_medicine_logo"
                                onclick="return sl(this,'','hicb2-ic_2')">WebMD My Medicine</a>
                                <p>Save your medicine, check interactions, sign up for FDA alerts, create
                                    family profiles and more.</p><a href="http://www.webmd.com/my-medicine/default.htm"
                                class="webmd-btn webmd-btn-pr webmd-btn-m" onclick="return sl(this,'','hicb2-ic_sub')">Get Started</a>
                            </div>
                        </div>
                        <div class="nav_dropdown_col_3">
                            <div id="nav_2_3">
                                <p>Drug News</p>
                                <ul role="menu">
                                    <li id="pb5" class="hide_link"><a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb2-dnws_1')">Get the Latest Drug Approvals &amp; Alerts</a>
                                    </li>
                                    <li id="pb6" class="hide_link"><a href="http://www.webmd.com/fda/default.htm" onclick="return sl(this,'','hicb2-dnws_2')">Find FDA Consumer Updates</a>
                                    </li>
                                    <li id="pb7" class="hide_link"><a href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb2-dnws_3')">Sign up to receive WebMD's award-winning content delivered to your inbox.</a>
                                    </li>
                                    <li id="pb8" class="hide_pb_link"><a href="http://www.webmd.com/diet/news/20120627/fda-approves-diet-pill-belviq"
                                        onclick="return sl(this,'','hicb2-dnws_4')">FDA Approves Diet Pill Belviq</a>
                                    </li>
                                    <li id="pb9" class="hide_pb_link"><a href="http://www.webmd.com/dvt/news/20120625/fda-delays-decision-on-blood-thinner-eliquis"
                                        onclick="return sl(this,'','hicb2-dnws_5')">FDA Delays Decision on Blood Thinner Eliquis</a>
                                    </li>
                                </ul>
                            </div>
                            <div id="nav_2_4">
                                <p>WebMD Mobile Drug Information App</p><a href="http://www.webmd.com/webmdapp"
                                onclick="return sl(this,'','hicb2-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_webmd_mobile_app.png" alt="WebMD logo"/></a> 
                                <a
                                href="http://www.webmd.com/webmdapp" onclick="return sl(this,'','hicb2-app_1')">Drug, supplement, and vitamin information on the go.</a>
                            </div>
                        </div>
            </div>
            </li>
            <li id="nav_3" class="nav nav_health"><a href="http://www.webmd.com/living-healthy" id="nav_link_3" class="nav_link"
                aria-haspopup="true" onclick="return sl(this,'','hicb3-tab')">Living Healthy</a>
                <div
                id="menu_3" class="nav_dropdown" role="menu" aria-expanded="false" aria-hidden="true">
                    <div class="nav_dropdown_col_1b">
                        <div id="nav_3_1">
                            <p>Featured Content</p>
                            <div id="pb11" class="hide_link">
                                <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_healthy_living_feature.jpg"
                                alt="Women with hair wrapped in towel"/> <a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets"
                                onclick="return sl(this,'','hicb3-ftr_1')" class="bold">Want luxurious locks?</a>
                                <p>WebMD cuts through the hype to reveal the best kept secrets for healthy
                                    hair.</p><a href="http://www.webmd.com/healthy-beauty/ss/slideshow-best-kept-hair-secrets"
                                onclick="return sl(this,'','hicb3-ftr_1')" class="link_overlay" tabindex="-1"></a>
                            </div>
                        </div>
                    </div>
                    <div class="nav_dropdown_col_2b">
                        <div id="nav_3_2">
                            <p>Living Healthy Centers</p><span><a href="http://www.webmd.com/a-to-z-guides/healthy-living/default.htm" onclick="return sl(this,'','hicb3-chl_more')">View All</a></span>
                            <div
                            class="third right_border"><a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cdt_1')"
                                class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_diet_food.png" alt="grilled salmon and vegetables"/></a>
                                <p
                                class="bold more_bottom_margin">Diet, Food &amp; Fitness</p>
                                    <ul>
                                        <li><a href="http://www.webmd.com/diet/default.htm" onclick="return sl(this,'','hicb3-cdt_1')">Weight Loss &amp; Diet Plans</a>
                                        </li>
                                        <li><a href="http://www.webmd.com/food-recipes/default.htm" onclick="return sl(this,'','hicb3-cdt_2')">Food &amp; Recipes</a>
                                        </li>
                                        <li><a href="http://www.webmd.com/fitness-exercise/default.htm" onclick="return sl(this,'','hicb3-cdt_3')">Fitness &amp; Exercise</a>
                                        </li>
                                    </ul>
                        </div>
                        <div class="third right_border"><a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-cbt_1')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_beauty_balance.png" alt="man and woman smiling"/></a>
                            <p
                            class="bold">Beauty, Balance &amp; Love</p>
                                <ul>
                                    <li><a href="http://www.webmd.com/healthy-beauty/default.htm" onclick="return sl(this,'','hicb3-cbt_1')">Healthy Beauty</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/balance/default.htm" onclick="return sl(this,'','hicb3-cbt_2')">Health &amp; Balance</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/sex-relationships/default.htm" onclick="return sl(this,'','hicb3-cbt_3')">Sex &amp; Relationships</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/oral-health/default.htm" onclick="return sl(this,'','hicb3-cbt_4')">Oral Care</a>
                                    </li>
                                </ul>
                        </div>
                        <div class="third"><a href="http://www.webmd.com/living-healthy" onclick="return sl(this,'','hicb3-clw_1')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_healthy_living_women_men.png" alt="women doing yoga"/></a>
                            <p
                            class="bold more_bottom_margin">Living Well</p>
                                <ul>
                                    <li><a href="http://www.webmd.com/women/default.htm" onclick="return sl(this,'','hicb3-clw_1')">Women's Health</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/men/default.htm" onclick="return sl(this,'','hicb3-clw_2')">Men's Health</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/healthy-aging/default.htm" onclick="return sl(this,'','hicb3-clw_3')">Aging Well</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/teens/default.htm" onclick="return sl(this,'','hicb3-clw_4')">Teens</a>
                                    </li>
                                </ul>
                        </div>
                    </div>
        </div>
        <div class="nav_dropdown_col_3">
            <div id="nav_3_3">
                <p>Featured Topics</p>
                <ul>
                    <li id="pb13" class="hide_link"><a href="http://www.webmd.com/diet/calc-bmi-plus" onclick="return sl(this,'','hicb3-ftpc_1')">BMI Calculator: Get Personalized Results</a>
                    </li>
                    <li id="pb14" class="hide_link"><a href="http://www.webmd.com/diet/healthtool-portion-size-plate" onclick="return sl(this,'','hicb3-ftpc_2')">Portion Size Plate: Easy Serving Size Guide</a>
                    </li>
                    <li id="pb15" class="hide_link"><a href="http://www.webmd.com/sex/birth-control/default.htm" onclick="return sl(this,'','hicb3-ftpc_3')">Your Birth Control Options</a>
                    </li>
                    <li id="pb16" class="hide_link"><a href="http://www.webmd.com/men/ss/slideshow-secrets-women-wish-you-knew"
                        class="type_ss" onclick="return sl(this,'','hicb3-ftpc_4')">19 Secrets Men Wish Women Knew <i></i></a>
                    </li>
                    <li id="pb17" class="hide_link"><a href="http://www.webmd.com/teens/rm-quiz-crazy-dreams" onclick="return sl(this,'','hicb3-ftpc_5')">Quiz: Weird, Crazy Dreams</a>
                    </li>
                    <li id="pb18" class="hide_pb_link"><a href="http://www.webmd.com/diet/food-fitness-planner/default.htm" onclick="return sl(this,'','hicb3-ftpc_6')">Food &amp; Fitness Planner: Personalize Your Weight Loss Plan</a>
                    </li>
                </ul>
            </div>
            <div id="nav_3_4">
                <p>WebMD Allergy App for iPhone</p><a href="http://www.webmd.com/allergy-app"
                onclick="return sl(this,'','hicb3-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/allergy_app_other/50x50_allergy_app_other.jpg" alt="WebMD Allergy App logo"/></a> 
                <a
                href="http://www.webmd.com/allergy-app" onclick="return sl(this,'','hicb3-app_1')">Fight allergies with daily forecasts, local alerts, and personalized tips.</a>
            </div>
        </div>
        </div>
        </li>
        <li id="nav_4" class="nav nav_health"><a href="http://www.webmd.com/family-pregnancy" id="nav_link_4" class="nav_link"
            aria-haspopup="true" onclick="return sl(this,'','hicb4-tab')">Family &amp; Pregnancy</a>
            <div
            id="menu_4" class="nav_dropdown" role="menu" aria-expanded="false" aria-hidden="true">
                <div class="nav_dropdown_col_1b">
                    <div id="nav_4_1">
                        <p>Featured Content</p>
                        <div id="pb20" class="hide_link">
                            <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/210x130_family_feature.jpg"
                            alt="Family at airport"/> <a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health" onclick="return sl(this,'','hicb4-ftr_1')"
                            class="bold">Traveling abroad?</a>
                            <p>Protect yourself and your family by learning which health precautions
                                and vaccines are advised for your destination.</p><a href="http://www.webmd.com/vaccines/ss/slideshow-travel-health"
                            onclick="return sl(this,'','hicb4-ftr_1')" class="link_overlay" tabindex="-1"></a>
                        </div>
                    </div>
                </div>
                <div class="nav_dropdown_col_2b">
                    <div id="nav_4_2">
                        <p>Family and Pregnancy Centers</p>
                        <div class="third right_border"><a href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pregnancy.png" alt="pregnant woman"/></a> 
                            <a
                            href="http://www.webmd.com/baby" onclick="return sl(this,'','hicb4-cpg_1')"
                            class="heading">Pregnancy</a>
                                <ul>
                                    <li><a href="http://www.webmd.com/baby/guide/getting-pregnant" onclick="return sl(this,'','hicb4-cpg_2')">Trying to Conceive</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/baby/guide/first-trimester" onclick="return sl(this,'','hicb4-cpg_3')">First Trimester</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/baby/guide/health-baby-second-trimester"
                                        onclick="return sl(this,'','hicb4-cpg_4')">Second Trimester</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/baby/guide/third-trimester" onclick="return sl(this,'','hicb4-cpg_5')">Third Trimester</a>
                                    </li>
                                </ul>
                        </div>
                        <div class="third right_border"><a href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_parenting.png" alt="mom, dad, and baby"/></a> 
                            <a
                            href="http://www.webmd.com/parenting/default.htm" onclick="return sl(this,'','hicb4-cpt_1')"
                            class="heading">Parenting</a>
                                <ul>
                                    <li><a href="http://www.webmd.com/parenting/baby/default.htm" onclick="return sl(this,'','hicb4-cpt_2')">Newborn &amp; Baby</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/children/default.htm" onclick="return sl(this,'','hicb4-cpt_3')">Children's Health</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/children/vaccines/default.htm" onclick="return sl(this,'','hicb4-cpt_4')">Children's Vaccines</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/parenting/raising-fit-kids/default.htm"
                                        onclick="return sl(this,'','hicb4-cpt_5')">Raising Fit Kids</a>
                                    </li>
                                </ul>
                        </div>
                        <div class="third"><a href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_family_pets.png" alt="Cat and dog on grass"/></a> 
                            <a
                            href="http://www.webmd.com/pets/default.htm" onclick="return sl(this,'','hicb4-cpet_1')"
                            class="heading">Pets</a>
                                <ul>
                                    <li><a href="http://www.webmd.com/pets/cats/default.htm" onclick="return sl(this,'','hicb4-cpet_2')">Healthy Cats</a>
                                    </li>
                                    <li><a href="http://www.webmd.com/pets/dogs/default.htm" onclick="return sl(this,'','hicb4-cpet_3')">Healthy Dogs</a>
                                    </li>
                                </ul>
                        </div>
                    </div>
                </div>
                <div class="nav_dropdown_col_3">
                    <div id="nav_4_3">
                        <p>Featured Topics</p>
                        <ul>
                            <li id="pb22" class="hide_link"><a href="http://www.webmd.com/baby/guide/pregnancy-am-i-pregnant" onclick="return sl(this,'','hicb4-ftpc_1')">Know the Signs of Early Pregnancy?</a>
                            </li>
                            <li id="pb23" class="hide_link"><a href="http://www.webmd.com/baby/rm-quiz-pregnancy-food-facts" onclick="return sl(this,'','hicb4-ftpc_2')">Test Your Smarts: What's Safe to Eat When You're Pregnant?</a>
                            </li>
                            <li id="pb24" class="hide_link"><a href="http://www.webmd.com/baby/ss/slideshow-fetal-development" class="type_ss"
                                onclick="return sl(this,'','hicb4-ftpc_3')">Peek Inside the Womb to See How Baby Grows <i></i></a>
                            </li>
                            <li id="pb25" class="hide_link"><a href="http://www.webmd.com/children/video/healthy-school-lunches" class="type_vid"
                                onclick="return sl(this,'','hicb4-ftpc_4')">Healthy School Lunches <i></i></a>
                            </li>
                            <li id="pb26" class="hide_link"><a href="http://www.webmd.com/parenting/raising-fit-kids/mood/rm-quiz-how-to-prevent-a-toddler-meltdown"
                                onclick="return sl(this,'','hicb4-ftpc_5')">Quiz: Know How to Avoid The Next Toddler Meltdown?</a>
                            </li>
                            <li id="pb27" class="hide_pb_link"><a href="http://www.webmd.com/vaccinetracker/" onclick="return sl(this,'','hicb4-ftpc_6')">WebMD Vaccine Tracker: Manage Vaccinations for Your Entire Family</a>
                            </li>
                        </ul>
                    </div>
                    <div id="nav_4_4">
                        <p>WebMD Pregnancy App for iPhone</p><a href="http://www.webmd.com/pregnancyapp"
                        onclick="return sl(this,'','hicb4-app_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/other/pregnancy_app_other/50x50_pregnancy_app_other.jpg" alt="WebMD Pregnancy App logo"/></a> 
                        <a
                        href="http://www.webmd.com/pregnancyapp" onclick="return sl(this,'','hicb4-app_1')">The big day is coming! Get organized and track baby's weekly development.</a>
                    </div>
                </div>
                </div>
        </li>
        <li id="nav_5" class="nav nav_news"><a href="http://www.webmd.com/news/default.htm" id="nav_link_5" class="nav_link"
            aria-haspopup="true" onclick="return sl(this,'','hicb5-tab')">News &amp; Experts</a>
            <div
            id="menu_5" class="nav_dropdown" role="menu" aria-expanded="false" aria-hidden="true">
                <div class="nav_dropdown_col_1c">
                    <div id="nav_5_1">
                        <p>News</p><span><a href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_more')">View All</a></span>
                        <div
                        class="nav_block hide_link" id="pb29"><a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_1')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"/></a> 
                            <a
                            href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_1')"
                            class="shorter">Today's Top Health Headlines</a>
                    </div>
                    <div class="nav_block hide_link" id="pb30"><a href="http://www.webmd.com/news/default.htm" class="nav_image" onclick="return sl(this,'','hicb5-news_2')"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/110x70_webmd_1.jpg" alt="WebMD logo"/></a> 
                        <a
                        href="http://www.webmd.com/news/default.htm" onclick="return sl(this,'','hicb5-news_2')"
                        class="shorter">Get the Latest Drug Approvals &amp; Alerts</a>
                    </div>
                    <ul>
                        <li id="pb31" class="hide_link"><a href="http://www.webmd.com/fda/default.htm" onclick="return sl(this,'','hicb5-news_3')">Find FDA Consumer Updates</a>
                        </li>
                        <li id="pb32" class="hide_link"><a href="http://www.webmd.com/fda/slideshow-fda-mobile-laboratories" class="type_ss"
                            onclick="return sl(this,'','hicb5-news_4')">On The Road Again: FDA Mobile Laboratories <i></i></a>
                        </li>
                        <li id="pb33" class="hide_link"><a href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-news_5')">Sign up to receive WebMD's award-winning content delivered to your inbox.</a>
                        </li>
                    </ul>
                </div>
                </div>
                <div id="wide_header">
                    <p>WebMD Health Experts and Community</p>
                </div>
                <div class="nav_dropdown_col_2c">
                    <div id="nav_5_2">
                        <p>Talk to health experts and other people like you in WebMD's Communities.
                            It's a safe forum where you can create or participate in support groups
                            and discussions about health topics that interest you.</p>
                        <div class="nav_block"><a href="http://www.webmd.com/blogs/default.htm" onclick="return sl(this,'','hicb5-xchng_blg')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_expert.png" alt=""/></a>
                            <p
                            class="bold">WebMD Second Opinion</p><a href="http://www.webmd.com/blogs/default.htm"
                                onclick="return sl(this,'','hicb5-xchng_blg')">Read expert perspectives on popular health topics.</a>
                        </div>
                        <div class="nav_block"><a href="http://www.webmd.com/exchanges/default.htm" onclick="return sl(this,'','hicb5-xchng_cmty')"
                            class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_community.png" alt=""/></a>
                            <p
                            class="bold">WebMD Communities</p><a href="http://www.webmd.com/exchanges/default.htm"
                                onclick="return sl(this,'','hicb5-xchng_cmty')">Connect with people like you, and get expert guidance on living a healthy life.</a>
                        </div>
                    </div>
                </div>
                <div class="nav_dropdown_col_3">
                    <div id="nav_5_3"><a href="http://answers.webmd.com/" id="webmd_answers_logo" onclick="return sl(this,'','hicb5-ans_1')">WebMD Answers</a>
                        <p>Got a health question? Get answers provided by leading organizations,
                            doctors, and experts.</p><a href="http://answers.webmd.com/" class="webmd-btn webmd-btn-pr webmd-btn-m"
                        onclick="return sl(this,'','hicb5-ans_sub')">Get Answers</a>
                    </div>
                    <div id="nav_5_4">
                        <p>WebMD Newsletters</p><a href="https://member.webmd.com/newsletters/newsletters.aspx"
                        onclick="return sl(this,'','hicb5-nwsltr_1')" class="nav_image"><img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/masthead_test/50x50_newsletter.png" alt="closeup of newsletter"/></a> 
                        <a
                        href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,'','hicb5-nwsltr_1')">Sign up to receive WebMD's award-winning content delivered to your inbox.</a>
                    </div>
                </div>
                </div>
        </li>
        </ul>
        </nav>
        <div id="authorization">
            <div id="login_tab-b"></div>
            <div id="why_webmd"><a href="https://member.webmd.com/signin" onclick="return sl(this,'','reg-login')">Sign In</a>|
                <a
                href="https://member.webmd.com/register" onclick="return sl(this,'','reg-signup')">Sign Up</a>| <a href="https://member.webmd.com/subscribe" onclick="return sl(this,'','nl-mast_sub')">Subscribe</a>
            </div>
            <div id="logged_in_text"><a href="https://member.webmd.com/applications.aspx" onclick="return sl(this,'','mymd_mt')"
                id="logged_in_logo"><span class="jawsonly">My WebMD</span></a><span id="greeting"></span>
            </div>
            <div id="logged_in"><a href="#" id="logged_in_tab" aria-haspopup="true">Show Menu</a>
                <div
                id="logged_in_dropdown" aria-expanded="false" aria-hidden="true">
                    <ul role="menu">
                        <li><a href="https://member.webmd.com/applications.aspx" onclick="return sl(this,'','ov-mymd_mt')">My Tools</a>
                        </li>
                        <li class="bottom_border"><a href="https://member.webmd.com/bookmarks.aspx" onclick="return sl(this,'','ov-mymd_mybkmrk')">My WebMD Pages</a>
                        </li>
                        <li class="bottom_border"><a href="https://member.webmd.com/profile.aspx" onclick="return sl(this,'','ov-mymd_ma')">My Account</a>
                        </li>
                        <li><a href="http://www.webmd.com/signout.asp" onclick="return sl(this,'','ov-mymd_so')">Sign Out</a>
                        </li>
                    </ul>
            </div>
        </div>
        </div>
        <div id="social_icons"><a class="facebook" href="http://www.webmd.com/click?url=http%3A//www.facebook.com/WebMD%3Fref=ts"
            onclick="return sl(this,'nw','soc_fb-h')">Facebook</a><a href="http://www.webmd.com/click?url=http%3A//twitter.com/WebMD"
            class="twitter" onclick="return sl(this,'nw','soc_tw-h')">Twitter</a>
            <a
            href="http://www.webmd.com/click?url=http://pinterest.com/webmd/" class="pinterest"
            onclick="return sl(this,'nw','soc_pn-h')">Pinterest</a>
        </div>
        <div id="divider"></div>
        </header>
        <script type="text/javascript">
            if(window.webmd && window.webmd.p && window.webmd.p.masthead) {
                        webmd.p.masthead.init();
                      }
        </script>
        </div>
        </div>
        <div id="mainContentContainer_area">
            <div class="bottomBackground_fmt">
                <div id="breadcrumb_ctr">
                    <div id="ContentPane3">
                        <div id="breadcrumb_rdr"> <span class="bc_0">
    <a href="/www/">WebMD Home</a>
    <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle"/>
  </span>
 <span class="bc_1">
    <a href="http://www.webmd.com/allergies/default.htm" onclick="return sl(this,'','brdcrmb');">Allergies Health Center</a> <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/divider_breadcrumb.gif" alt="next page" width="6" height="10" align="absmiddle"/> </span>

                            <span
                            class="bc_2"> <a href="http://www.webmd.com/allergies/news/default.htm" onclick="return sl(this,'','brdcrmb');"
                                class="breadcrumbActive">Allergies News</a> 
                                </span>
                        </div>
                        <div id="headerLinks_email" class="headerLinks_fmt"> <a href="#" title="Email this page to a friend" class="triggerEmailOverlay"
                            onclick="wmdPageLink('email-friend_link');return false;">Email a Friend</a>

                        </div>
                        <div id="headerLinks_print" class="headerLinks_fmt"> <a rel="nofollow" href="?print=true" onclick="printWindow(); ctrs('prtfrnd'); return false"
                            title="Print this article">Print Article</a>

                            <script>
                                if (pf_param == "true") {
                                	printElements();
                                }
                            </script>
                        </div>
                        <div id="ht-nav">
                            <p>Allergies Trends:</p>
                            <ul id="ht-nav-list">
                                <li id="first"> <a href="http://www.webmd.com/allergies/nonallergic-rhinitis" onclick="return sl(this,'','hot-trends_1');">Rhinitis</a>

                                </li>
                                <li> <a href="http://www.webmd.com/allergies/guide/allergy-shots" onclick="return sl(this,'','hot-trends_2');">Allergy Shots</a>

                                </li>
                                <li> <a href="http://www.webmd.com/allergies/guide/poison-ivy-oak-sumac" onclick="return sl(this,'','hot-trends_3');">Poison Oak</a>

                                </li>
                                <li> <a href="http://www.webmd.com/allergies/guide/casein-allergy-overview"
                                    onclick="return sl(this,'','hot-trends_4');">Casein</a>

                                </li>
                                <li> <a href="http://www.webmd.com/allergies/guide/nasal-polyps-symptoms-and-treatments"
                                    onclick="return sl(this,'','hot-trends_5');">Nasal Polyps</a>

                                </li>
                                <li> <a href="http://www.webmd.com/allergies/guide/nut-allergy" onclick="return sl(this,'','hot-trends_6');">Nut Allergy</a>

                                </li>
                            </ul>
                        </div>
                    </div>
                </div>
                <div id="contentBackground_fmt">
                    <div id="mainContent_ThirdCol_ctr">
                        <div id="ContentPane4">
                            <div class="titlebar" id="hdr">
                                <div class="tb_main">
                                     <h1>Allergies Health Center</h1>

                                </div>
                            </div>
                            <script type="text/javascript">
                                (function() {
                                			var that = function() {
                                				var h = $("#mainContent_ThirdCol_ctr").outerHeight();
                                				$("#navColumn_area").css('margin-top', '-'+h+'px');
                                			};
                                			try{ that(); } catch(e) {}
                                			$(window).load( function() { try{ that(); } catch(e) {} } );
                                		})();
                            </script>
                        </div>
                    </div>
                    <div id="mainContent_area">
                        <div id="mainContent_ctr">
                            <div id="middleContent_fmt">
                                <div id="ContentPane5">
                                    <div class="pop_toolst_rdr" id="lln-toolsres">
                                        <script type="text/javascript">
                                            //Removes Popular Tools from TOC pages or where www.webmd.com is followed by "news-features"
                                        		/* :: 2015.02.04 rewrite :: */
                                        		// Create array(s) of the ID's to add the Tools module to
                                        		var s_topic = s_topic || "", s_business_reference = s_business_reference || "", s_publication_source = s_publication_source ||"", s_channel_health = s_channel_health || "", cssBlockOverride = ['Glossary', 'Nav - A-Z page', 'TOC', 'TOC - Channel', 'TOC - Guide', 'TOC - Mini-Center Topic', 'WebMD Image Collection'], sTopicException = ['7002','7006','7022','7023','7024'];
                                        		
                                        		//if the s_publication_source is !== to the array OR s_business_reference is !== to the array OR s_channel_health is === to the array
                                        		if ( cssBlockOverride.indexOf(s_publication_source) === -1 ||  ssBlockOverride.indexOf(s_business_reference) === -1 || s_channel_health === 'Health Insurance and Medicare') {
                                        			// if the s_topic ID's first number is not equal to 7 OR the s_topic ID is == the array AND s_business_reference != the array
                                        			if ((s_topic.substring(0, 1) !== "7" || sTopicException.indexOf(s_topic) >= 0) && cssBlockOverride.indexOf(s_business_reference) === -1) {
                                        				$('.pop_toolst_rdr').css('display', 'block');
                                        		        webmd.oas = window.webmd.oas || {};
                                        		        webmd.oas.mapping = window.webmd.oas.mapping || {};
                                        		        webmd.oas.mapping['oas_tools_and_resources'] = ['x56', 'x57', 'x58', 'x59', 'x60', 'x61'];
                                        			}
                                        		}
                                        </script>
                                        <div class="pop_toolst_top_fmt">
                                            <h2>Tools &amp; Resources</h2>
                                            <ul>
                                                <li id="x56"><a href="http://www.webmd.com/allergies/suspect-food-allergy" onclick="return sl(this,'','lln-toolsres_1');">Think You Have a Food Allergy?</a>
                                                </li>
                                                <li id="x57"><a href="http://www.webmd.com/allergies/ss/slideshow-allergy-medicines"
                                                    class="type_ss" onclick="return sl(this,'','lln-toolsres_2');">Essential Items for Allergy Relief <i> </i></a>
                                                </li>
                                                <div class="breaker_fmt"></div>
                                                <li id="x58"><a href="http://www.webmd.com/allergies/ss/slideshow-pets-and-allergies"
                                                    class="type_ss" onclick="return sl(this,'','lln-toolsres_3');">Pets and Allergies<i> </i></a>
                                                </li>
                                                <li id="x59"><a href="http://www.webmd.com/allergies/allergy-relief-10/slideshow-allergy-myths-facts"
                                                    class="type_ss" onclick="return sl(this,'','lln-toolsres_4');">Allergies: Myths vs. Facts<i> </i></a>
                                                </li>
                                                <div class="breaker_fmt"></div>
                                                <li id="x60"><a href="http://www.webmd.com/allergies/how-to-control-allergens-in-your-home"
                                                    onclick="return sl(this,'','lln-toolsres_5');">Controlling Home Allergies</a>
                                                </li>
                                                <li id="x61"><a href="http://www.webmd.com/allergies/video/indoor-allergies-in-the-office"
                                                    class="type_vid" onclick="return sl(this,'','lln-toolsres_6');">Allergies in the Workplace<i> </i></a>
                                                </li>
                                                <div class="breaker_fmt"></div>
                                            </ul>
                                            <div class="breaker"></div>
                                        </div>
                                        <script class="oas_template" id="oas_tools_and_resources" type="text/html">
                                            <a class="{type_prefix}{type}" onclick="return sl(this,'','lln-toolsres_{link_position}');" href="{href}">{alt}{i_tag}</a>
                                        </script>
                                        <div class="pop_toolst_bot_fmt"></div>
                                    </div>
                                    <script type="text/javascript">
                                        if (window.$) { 
                                        	$(document).ready(function() {
                                        		// produce array from value(s) of 'secTopId'
                                        		var mySplitResultsecTopId = secTopId.split("|");
                                        		var wloop = mySplitResultsecTopId.length;
                                        		var sTopicException = ['7002','7006','7022','7023','7024'];
                                        		// Hides the Pop Tools list on pages with a sensitive secondary topic id. 
                                        		// Updated 2015.02.04 by David Ware
                                        		for (i = 0; i &lt; wloop; i++) {
                                        			// if this is a sensitive topic and the topicId is not in the list
                                        			if (mySplitResultsecTopId[i].substring(0,1) === '7' && sTopicException.indexOf(mySplitResultsecTopId[i]) === -1){
                                        				$('.pop_toolst_rdr').css('display','none');
                                        			}
                                        		}
                                        		//Hides the Pop Tools list on Actionset Pages
                                        		if ($('.actionset').length) {
                                        			$('.pop_toolst_rdr').css('display','none');
                                        		}
                                        	});
                                        }
                                    </script>
                                    <div class="article_rdr">
                                        <div class="share_bar">
                                            <script>
                                                webmd.m.share.init();
                                            </script>
                                        </div>
                                        <div class="font_sizer_fmt rs_skip">
                                            <div class="font_sizer_text_fmt">Font Size</div>
                                            <div class="font_sizer_001_fmt"></div>
                                            <div id="fs_01" class="font_sizer_002b_fmt"> <a class="copyA_fmt" title="Small font" href="javascript:setClass('textArea', 'copyNormal');javascript:setClass('fs_01', 'font_sizer_002b_fmt');javascript:setClass('fs_02', 'font_sizer_002a_fmt');javascript:setClass('fs_03', 'font_sizer_002a_fmt');">A</a>

                                            </div>
                                            <div id="fs_02" class="font_sizer_002a_fmt"> <a class="copyB_fmt" title="Medium font" href="javascript:setClass('textArea', 'copyMedium');javascript:setClass('fs_01', 'font_sizer_002a_fmt');javascript:setClass('fs_02', 'font_sizer_002b_fmt');javascript:setClass('fs_03', 'font_sizer_002a_fmt');">A</a>

                                            </div>
                                            <div id="fs_03" class="font_sizer_002a_fmt"> <a class="copyC_fmt" title="Large font" href="javascript:setClass('textArea', 'copyLarge');javascript:setClass('fs_01', 'font_sizer_002a_fmt');javascript:setClass('fs_02', 'font_sizer_002a_fmt');javascript:setClass('fs_03', 'font_sizer_002b_fmt');">A</a>

                                            </div>
                                            <div class="font_sizer_003_fmt"></div>
                                        </div>
                                        <div class="font_sizer">
                                            <script>
                                                webmd.m.fontSizer.init();
                                            </script>
                                        </div>
                                        <script type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS_static/widgets/webmd.m.add_article_save.js">
</script>
                                        <div id="readspeaker_area" style="display: none;">
                                            <div id="readspeaker_button1" class="rs_skip"> <a accesskey="L" href="http://app.readspeaker.com/cgi-bin/rsent?customerid=5841&amp;lang=en_us&amp;readid=textArea"
                                                target="_blank" onclick="readpage(this.href, 'xp1'); return false;">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/article/readspeaker/listen_en_us.gif" alt="Listen to this page using ReadSpeaker" title="Listen to this page using ReadSpeaker"/>
      </a>

                                            </div>
                                            <script src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/javascript/readspeaker/en.js"
                                            type="text/javascript">
</script>
                                            <script type="text/javascript">
                                                (function(){
                                                $(document).ready(function(){
                                                webmd.readspeakerPrep.init({pages:5});
                                                    });
                                                    })();
                                            </script>
                                            <div id="xp1"></div>
                                        </div>
                                        <script type="text/javascript">
                                            $(function(){
                                            var el = $("#readspeaker_area");
                                            if(el){
                                            if(s_sponsor_program == "" || typeof(s_sponsor_program) == 'undefined' ){
                                            el.addClass('non-spon-listen');
                                            el.find('a').append("Listen");
                                            el.css("display", "block");
                                            }
                                            }
                                            });
                                        </script>
                                        <div id="textArea" class="copyNormal">
                                             <h2>Babies Who Eat Peanuts Early May Avoid Allergy</h2>

                                            <div class="subhead_fmt"></div>
                                            <div class="author_fmt">By <a rel="author" href="http://www.webmd.com/brenda-goodman" onclick="return sl(this,'','prog-lnk');">Brenda  Goodman, MA</a>
                                                <br/>WebMD Health News</div>
                                            <div class="reviewedBy_fmt">Reviewed by <a onclick="return sl(this,'','prog-lnk');" href="http://www.webmd.com/hansa-bhargava">Hansa D. Bhargava, MD</a>
                                            </div>
                                            <div class="clearBoth_fmt clearing-div"></div>
                                             <h3></h3>

                                            <p></p>
                                            <p>Feb. 23, 2015 -- Life-threatening peanut allergies have mysteriously been
                                                on the rise in the past decade, with little hope for a cure.</p>
                                            <p xmlns:xalan="http://xml.apache.org/xalan">But a groundbreaking new study may offer a way to stem that rise, while
                                                another may offer some hope for those who are already allergic.</p>
                                            <p>Parents have been told for years to avoid giving foods containing peanuts
                                                to babies for fear of triggering an allergy. Now research shows the opposite
                                                is true: Feeding babies snacks made with peanuts before their first birthday
                                                appears to prevent that from happening.</p>
                                            <p>The study is published in the <i>New England Journal of Medicine,</i> and
                                                it was presented at the annual meeting of the American Academy of Allergy,
                                                Asthma and Immunology in Houston. It found that among children at high
                                                risk for getting peanut allergies, eating peanut snacks by 11 months of
                                                age and continuing to eat them at least three times a week until age 5
                                                cut their chances of becoming allergic by more than 80% compared to kids
                                                who avoided peanuts. Those at high risk were already allergic to egg, they
                                                had the skin condition <a href="http://www.webmd.com/skin-problems-and-treatments/eczema/default.htm"
                                                onclick="return sl(this,'','embd-lnk');" class="Article">eczema</a>, or
                                                both.</p>
                                            <p>Overall, about 3% of kids who ate peanut butter or peanut snacks before
                                                their first birthday got an allergy, compared to about 17% of kids who
                                                didn’t eat them.</p>
                                            <p>“I think this study is an astounding and groundbreaking study, really,”
                                                says Katie Allen, MD, PhD. She's the director of the Center for Food and
                                                Allergy Research at the Murdoch Children’s Research Institute in Melbourne,
                                                Australia. Allen was not involved in the research.</p>
                                            <p>Experts say the research should shift thinking about how kids develop
                                                <a
                                                href="http://www.webmd.com/allergies/guide/food-allergy-intolerances" onclick="return sl(this,'','embd-lnk');"
                                                class="Article">food allergies</a>, and it should change the guidance doctors give to
                                                    parents.</p>
                                            <p>Meanwhile, for children and adults who are already <a href="http://www.webmd.com/allergies/guide/nut-allergy"
                                                onclick="return sl(this,'','embd-lnk');" class="Article">allergic to peanuts</a>,
                                                another study presented at the same meeting held out hope of a treatment.</p>
                                            <p>A new skin patch called Viaskin allowed people with peanut allergies to
                                                eat tiny amounts of peanuts after they wore it for a year.</p>
                                            <p></p> <a name="1"> </a>

                                             <h3>A Change in Guidelines?</h3>

                                            <p>Allergies to peanuts and other foods are on the rise. In the U.S., more
                                                than 2% of people react to peanuts, a 400% increase since 1997. And reactions
                                                to peanuts and other tree nuts can be especially severe. Nuts are the main
                                                reason people get a life-threatening problem called <a href="http://www.webmd.com/allergies/guide/anaphylaxis"
                                                onclick="return sl(this,'','embd-lnk');" class="Article">anaphylaxis</a>.</p>
                                        </div>
                                    </div>
                                    <div class="attribution_rdr">
                                        <script type="text/javascript">
                                            var pagination_title=new Array();
                                                var pagination_current=1;
                                                    
                                                        pagination_title[1]="";
                                                                pagination_title[2]="A Change in Guidelines? continued...";
                                                                pagination_title[3]="Gathering Evidence";
                                                                pagination_title[4]="‘Landmark’ Results";
                                                                pagination_title[5]="More Hope on the Horizon continued...";
                                        </script>
                                        <div class="pagination_fmt">
                                            <div class="left_fmt"></div>
                                            <div class="right_fmt"> <span class="current_fmt">1</span>
 <span class="pipe_fmt">|</span>
 <a href="?page=2"
                                                title="Page 2" onclick="return sl(this,'','pagenum-art_2');">2</a>

                                                <span
                                                class="pipe_fmt">|</span> <a href="?page=3" title="Page 3" onclick="return sl(this,'','pagenum-art_3');">3</a>

                                                    <span
                                                    class="pipe_fmt">|</span> <a href="?page=4" title="Page 4" onclick="return sl(this,'','pagenum-art_4');">4</a>

                                                        <span
                                                        class="pipe_fmt">|</span> <a href="?page=5" title="Page 5" onclick="return sl(this,'','pagenum-art_5');">5</a>

                                                            <div
                                                            class="outline_fmt right"> <a href="?page=2" onclick="return sl(this,'','pagenum-art_next');">Next Page <span class="symbol_fmt">&gt;</span></a>

                                            </div>
                                        </div>
                                    </div>
                                </div>
                                <div class="moduleSpacer_rdr"></div>
                                <div id="remoteAd_rdr">
                                    <div class="centerAd_r1_rdr">
                                        <div class="centerAd_BG_fmt">
                                            <div class="conta" style="color:#737373; clear:both; display:none;">Continue reading below...</div>
                                            <div class="remoteAd_top_fmt"></div>
                                            <div id="remoteAd_fmt" class="remoteAd_BG_fmt">
                                                <div class="ad_placeholder"></div>
                                            </div>
                                            <div class="remoteAd_bottom_fmt"></div>
                                        </div>
                                    </div>
                                    <div class="moduleSpacer_rdr"></div>
                                </div>
                                <script type="text/javascript">
                                    /* using this to pop up interstitial instead of /click as going to the /click URL with all the other parameters becomes an encoding issue */
                                    function popInterstitial() {
                                    var interstitial = window.open("/privacy_window.html","privacy_window","width=325,height=175,resizable=no,toolbar=no,left=350,top=300");
                                    if (interstitial) {
                                    interstitial.focus();
    
                                    }
                                    return false;
                                    }
                                </script>
                                <div id="triggerFlyin"></div>
                                <script type="text/javascript">
                                    require(['fly_in/1/fly_in'], function(flyIn){
                                                        flyIn.init('#triggerFlyin');
                                                        });
                                </script>
                                <div class="moduleSpacer_rdr"></div>
                                <script language="javascript1.2" type="text/javascript">
                                    function getPubType() {
                                    return "editorial";
                                    }
                            
                                    function checkPartners(){
                            
                                    /* Array of Partner Names */
                                    var partnerNames=[
                                    "Good Housekeeping",
                                    "Redbook",
                                    "Esquire",
                                    "Country Living",
                                    "Marie Claire",
                                    "Oxmoor House",
                                    "\"Health",
                                    "Southern Living",
                                    "Psychology Today",
                                    "EatingWell",
                                    "DrGreene.com",
                                    "Men's Health",
                                    "Women's Health",
                                    "Prevention",
                                    "eDiets",
                                    "soul\" Magazine",
                                    "Runner's World",
                                    "Men's Fitness\" Magazine",
                                    "Shape\" Magazine",
                                    "Fit Pregnancy\" Magazine",
                                    "Natural Health\" Magazine",
                                    "\"Best Life\" Magazine",
                                    "\"Cure\" Magazine",
                                    "WebMD Veterinary Reference from the ASPCA",
                                    "WebMD Veterinary Reference from ASPCA Virtual Pet Behaviorist",
                                    "COPD Foundation",
                                    "Elle",
                                    "Woman's Day"
                                    ]
                            
                                    /* Array of names that go with files in partners node */
                                    var partnerScripts=[
                                    "goodHousekeeping",
                                    "redbook",
                                    "esquire",
                                    "countryLiving",
                                    "marieClaire",
                                    "cookingLight",
                                    "health",
                                    "southernLiving",
                                    "psychToday",
                                    "eatingWell",
                                    "drGreene",
                                    "mensHealth",
                                    "womensHealth",
                                    "prevention",
                                    "eDiets",
                                    "bodySoul",
                                    "runnersWorld",
                                    "mensFitness",
                                    "shapeMag",
                                    "fitPregnancy",
                                    "naturalHealth",
                                    "bestLife",
                                    "cure",
                                    "aspca",
                                    "aspca",
                                    "copdf",
                                    "elle",
                                    "womansDay"
                                    ]
                            
                                    /* Variables for whether a partner exists and which one in the array it is */
                                    var isThere;
                                    var whichOne = -1;
                            
                                    /* Pulls the pub source out of the XML */
                                    var pubSource = 'WebMD Medical News';
                            
                                /* Runs through the different partners and sees if one of them exists in the pub source */
                                for (var i=0; i &lt;= partnerNames.length-1; i++) { isThere = pubSource.search(partnerNames[i]); if (isThere != -1) {whichOne = i} }
                            
                                /* If it found one, makes the JS calls and also populates the correct divs with the files out of partners node */
                                if (whichOne != -1) {
                            
                                var JSCall = 'ht' + 'tp://img.web' + 'md.com/dtmcms/live/webmd/consumer_assets/site_images/javascript/partners/' + partnerScripts[whichOne] + '.js';
                            
                                var JSElement = document.createElement("script");
                                JSElement.type = "text/javascript";
                                JSElement.src = JSCall;
                            
                                document.getElementsByTagName("head")[0].appendChild(JSElement);
                            
                                var moduleCenter = "ContentPane8";
                                var moduleRight = "ContentPane25";
                            
                                addLoadEvent(function() {
                                $('#'+moduleCenter).append(writePartnerCenter());
                                $('#'+moduleRight).prepend(writePartnerRight());
                                })
                                }
                                }
                            
                                checkPartners();
                                </script>
                                <script type="text/javascript">
                                    if (document.getElementById("headerLinks_print")) {
                                    setClass('headerLinks_print','headerLinks_fmt_on');
                                    };
                                </script>
                                <link rel="stylesheet" type="text/css" href="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/CSS/print.css"
                                media="print"/>
                                <style media="screen">
                                    #url_reference {display: none};
                                </style>
                                <style media="print">
                                    #url_reference { display: block; line-height: 150%; margin-bottom: 10px; }
                                    #logo_rdr img { visibility: visible; }
                                    .titleBar_rdr .titleBarMiddle_fmt { padding-top: 1.5em !important;}
                                </style>
                                <script type="text/javascript">
                                    var insert1 = document.getElementById("ContentPane2");
                                    var urlDiv = articleUrl();
                                    if (insert1) {
                                    insert1.appendChild(urlDiv);
                                    }
                                </script>
                            </div>
                            <div id="ContentPane6"></div>
                            <div id="ContentPane7"></div>
                            <div id="ContentPane8">
                                <div class="related_reading_rdr" id="rltd-p-893">
                                     <h4>Top Picks</h4>

                                    <ul>
                                        <li id="x62" class="first"> <a href="http://www.webmd.com/allergies/guide/insect-stings" onclick="return sl(this,'','rltd-p-893_1');">Insect Sting Allergies</a>

                                        </li>
                                        <li id="x63"> <a href="http://www.webmd.com/allergies/features/allergy-tips" onclick="return sl(this,'','rltd-p-893_2');">Housecleaning Tips for Indoor Allergies</a>

                                        </li>
                                        <li id="x64"> <a href="http://www.webmd.com/allergies/rm-quiz-facts-allergies" onclick="return sl(this,'','rltd-p-893_3');">Allergies: How Much Do You Know?</a>

                                        </li>
                                        <li id="x65"> <a href="http://www.webmd.com/allergies/features/the-truth-about-mucus"
                                            onclick="return sl(this,'','rltd-p-893_4');">The Truth About Mucus</a>

                                        </li>
                                        <li id="x66"> <a class="type_vid" href="http://www.webmd.com/allergies/anaphylaxis-13/video-preparing-for-emergencies"
                                            onclick="return sl(this,'','rltd-p-893_5');">Signs of a Dangerous Allergic Reaction<i> </i></a>

                                        </li>
                                        <li id="x67" class="last"> <a href="http://www.webmd.com/allergies/rm-quiz-colds-allergies" onclick="return sl(this,'','rltd-p-893_6');">Cold or Allergy? Quiz Yourself</a>

                                        </li>
                                    </ul>
                                    <script class="oas_template" id="oas_top_picks" type="text/html">
                                        <a class="{type_prefix}{type}" onclick="return sl(this,'','rltd-p-893_{link_position}');" href="{href}">{alt}{i_tag}</a>
                                    </script>
                                    <script type="text/javascript">
                                        webmd.oas = window.webmd.oas || {}; webmd.oas.mapping = window.webmd.oas.mapping || {}; webmd.oas.mapping['oas_top_picks'] = ['x62','x63','x64','x65','x66','x67'];
                                    </script>
                                </div>
                                <script type="text/javascript">
                                    function moveMustSeeArticles() {
                                    					/* make the swap function available internally */
                                    					function doSwap() {	
                                    						/* get must-see articles, remove from the DOM */
                                    						var msa = $('#mainContentContainer_area .related_reading_rdr').clone();
                                    						$('#mainContentContainer_area .related_reading_rdr').remove();
                                    						
                                    						/* get the pagination if it exists */
                                    						var pagination = $('.attribution_rdr .pagination_fmt');
                                    						var contextual = $('.other_context_links_rdr');
                                    						var article = $('.article_rdr');
                                    						
                                    						/* certain pages use another format:
                                    						// the top picks module is in .related_wrapper .dyn_related
                                    						// as the second div with this class.
                                    						// it has an id, unlike the other div */
                                    						var dyn_related = $('.related_wrapper .dyn_related[id]');
                                    						
                                    						/* if dyn_related, it is handled one way */
                                    						if(dyn_related.html()) {
                                    							/* on last page, .related_wrapper is displayed and "Top Picks" should stay
                                    							// on other pages, it should move down */
                                    							if(dyn_related.parent().css('display') === 'none') {
                                    								var dyn_related_clone = dyn_related.clone();
                                    								dyn_related.remove();
                                    								$(pagination).after('<div class="related_wrapper" style="display: block;" id="related_wrapper_2"></div>')
                                    								$('#related_wrapper_2').append(dyn_related_clone);
                                    							}
                                    						/* if not dyn_related, it is handled   this way */
                                    						} else {
                                    							/* if pagination exists, insert must-see articles before the pagination,
                                    							else insert before the next node after the contextual related links,
                                    							else insert before the next node after the article */
                                    							if (pagination.html()) {
                                    								$(pagination).after(msa);
                                    								msa.css('padding-top','30px');
                                    							} else if (contextual.html()) {
                                    								$(contextual).after(msa);
                                    							} else {
                                    								$(article).after(msa);
                                    							}
                                    						}
                                    						
                                    						/* show */
                                    						$('#mainContentContainer_area .related_reading_rdr').show();
                                                            
                                    					}
                                                        
                                                        
                                    					
                                                        /* do the swap unless the function getPubType exists and returns the value 'third_party', unless it is Healthy Day content */
                                    					if (s_publication_source = 'WebMD News from HealthDay'){
                                                        	doSwap();
                                                        } else if(typeof(getPubType) == 'function') {
                                    						(getPubType() == 'third_party') ? null : doSwap();
                                    					} else {
                                    						doSwap();
                                    					}
                                    				}
                                                                    if (window.$) { 
                                    					moveMustSeeArticles();
                                    					$('.share_rdr').hide();
                                    					}
                                                        
                                                         $(document).ready(function() 
                                                         {
                                                        	$('.related_wrapper').css('display','block');
                                                            $('.dyn_related').css('padding-top','0px');  
                                                         });
                                </script>
                            </div>
                            <div id="ContentPane9"></div>
                            <div id="ContentPane10"></div>
                            <div id="ContentPane11"></div>
                            <div id="ContentPane12"></div>
                            <div id="ContentPane13"></div>
                            <div id="ContentPane14"></div>
                            <div id="ContentPane15"></div>
                            <div id="ContentPane16"></div>
                            <div id="ContentPane17"></div>
                            <div id="ContentPane18">
                                <!--<ul><li>$adsystem = DFP</li><li>$pos = 5000</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 1</li><li>iframewidth = 1</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 5000</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
                                <script>
                                    var priTopId='1625', secTopId='';
                                </script>
                                <script>
                                    // self executing function for scope
                                    (function() { 
                                      var isDFP;
                                  
                                        isDFP = true;
                                      
                        
                                        // Moving the ad up into the article:
                                        // Finds all possible locations to insert, moves the ad location up into the article, before handling the Ad Seed Call
                        
                                        // Updates Paragraphs
                                        $(".article_rdr p").each(function() {
                                            $(this).addClass("node");
                                        });
                        
                        
                                        // Updates Unordered Lists
                                        $(".article_rdr .copyNormal ul").each(function() {
                                            $(this).addClass("node");
                                        });
                        
                        
                                        //Removes nodes from paragraphs where it shouldnt be?
                                        $(".article_rdr .share_bar p").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".article_rdr .aia_rdr p").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".article_rdr .share_bar ul").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".article_rdr .aia_rdr ul").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".contextual_links_fmt p").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".article_rdr table p").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".article_rdr .verifiedBox_rdr p").each(function() {
                                            $(this).removeClass("node");
                                        });
                                        $(".article_rdr .copyNormal table ul").each(function() {
                                            $(this).removeClass("node");
                                        });
                        
                                        // Finds the number of paragraphs / List items within the article. 
                                        sbposition = ($('.article_rdr .node').length);
                        
                                        //Is this Healthwise Content??
                                        if (s_publication_source.indexOf("Healthwise") != -1) {
                                            //Healthwise Steps, if different;
                                        } else {
                                            //Moves the sponsor box placeholder up into the document
                                            if (sbposition >= 8) {
                                                $('#remoteAd_rdr').insertAfter('.node:eq(5)');
                                            }
                                            if (sbposition == 7) {
                                                $('#remoteAd_rdr').insertAfter('.node:eq(4)');
                                            }
                                            if (sbposition == 6) {
                                                $('#remoteAd_rdr').insertAfter('.node:eq(4)');
                                            }
                                            if (sbposition == 5) {
                                                $('#remoteAd_rdr').insertAfter('.node:eq(4)');
                                            }
                                            if (sbposition == 4) {
                                                $('#remoteAd_rdr').insertAfter('.node:eq(3)');
                                            }
                                            if (sbposition == 4) {
                                                $('#remoteAd_rdr').insertAfter('.node:eq(3)');
                                            }
                                            //End else    
                                        }
                        
                        
                                        setTimeout(function() {
                                            var iframeURLOutOfPB = 'http://as.webmd.com/html.ng/transactionID=442451382&tile=365904714&tug=2321&pug=__&site=2&affiliate=20&hcent=893&scent=&pos=113&xpg=1625&sec=&amp;au1=&au2=&uri=%2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings&artid=091e9c5e810fb2ee&inst=0&amp;leaf=&segm=0&cc=17&tmg=&bc=_age121_l23_age122_j30_t780_&mcent=&micro=';
                        
                                            var cleanIframeURL = iframeURLOutOfPB.replace(/&amp;/g, '&');
                        
                        
                                            var ad = {
                                                adLocation: 'remote',
                                                adURL: cleanIframeURL,
                                                trans: '442451382',
                                                tile: '365904714',
                                                pos: '5000'
                                            };
                        
                                            // check to make sure this seed call functionality exists, if it does, dooo it
                                            if (webmd.object.exists('//webmd.ads.handleAdSeedCall')) {
                                                if(!isDFP){
                                                  webmd.ads.handleAdSeedCall(ad);
                                                }
                                                
                                                setTimeout(function() {
                                                    updateRemoteAd();
                                                }, 2000);
                                            }
                                        }, 2000);
                        
                        
                                        function updateRemoteAd() {
                                            $('.chapterList_fmt #remoteAd_rdr').css('position', 'relative');
                                            $('.chapterList_fmt #remoteAd_rdr').css('left', '-14px');
                                            $('#remoteAd_Iframe').contents().find("body").attr('id', 'mainContent_area');
                                            if ($('#remoteAd_Iframe').contents().find('body').text().length && sbposition >= 4) {
                                                $('.conta').css('display', 'block');
                                                $('#remoteAd_rdr').css('display', 'block');
                                            }
                                        }
                        
                                    })();
                                </script>
                                <script type="text/javascript">
                                    var priTopId = "1625";
                                      var secTopId = "";
                                </script>
                                <!--<ul><li>$adsystem = DFP</li><li>$pos = 5001</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 1</li><li>iframewidth = 1</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 5001</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
                                <script>
                                    var priTopId='1625', secTopId='';
                                </script>
                                <div class="centerAd_r1_rdr">
                                    <div id="centerAd_fmt" class="centerAd_BG_fmt">
                                        <div id="ads2-pos-5001-ad_cw2_icm" class="ad_placeholder"></div>
                                        <script>
                                            webmd.ads2Consumer.defineAd({targets:{art:'091e9c5e810fb2ee',cc:'17',env:'',hcent:'893',leaf:'&amp;leaf=',mcent:'',mic:'',pt:'1625',sec:'',pug:'__',scent:'',tmg:'',tug:'2321',uri:'%2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings'},blockCodes:'_age121_l23_age122_j30_t780_',id:'ads2-pos-5001-ad_cw2_icm',pos:'5001',sizes:[1,2]});
                                        </script>
                                    </div>
                                </div>
                                <div class="moduleSpacer_rdr"></div>
                            </div>
                            <div id="ContentPane19"></div>
                            <div id="ContentPane20"></div>
                        </div>
                    </div>
                </div>
                <div id="navColumn_area">
                    <div id="navColumn_ctr">
                        <div id="ContentPane30"></div>
                        <div id="ContentPane31"></div>
                        <div id="ContentPane22">
                            <div id="guidenav_rdr">
                                <div class="top_fmt"></div>
                                <div id="centernav_fmt">
                                    <ul>
                                        <li class="header_fmt"> <a href="http://www.webmd.com/allergies/default.htm" onclick="return sl(this,'','lln-ctrcnav_11-1');">Allergies Home</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/news-features" onclick="return sl(this,'','lln-ctrcnav_ll-2');">News &amp; Features</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/quiz-index" onclick="return sl(this,'','lln-ctrcnav_ll-3');">Quizzes</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/ss/slideshow-index" onclick="return sl(this,'','lln-ctrcnav_ll-4');">Slideshows</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/video/video-index" onclick="return sl(this,'','lln-ctrcnav_ll-5');">Videos</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/medical-reference-index" onclick="return sl(this,'','lln-ctrcnav_ll-6');">Reference</a>

                                        </li>
                                        <li> <a href="http://doctor.webmd.com/find-a-doctor/allergy" onclick="return sl(this,'','lln-ctrcnav_ll-7');">Find an Allergist</a>

                                        </li>
                                    </ul>
                                </div>
                                <div id="standardSubnav_fmt">
                                    <div class="header_fmt">
                                        <div class="icon_fmt"> <a href="http://www.webmd.com/allergies/guide/default.htm" onclick="return sl(this,'','gd-fullgd_1');">
          <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/modules/icon_guide.gif" border="0" alt="Guide"/>
        </a>

                                        </div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/guide/default.htm" onclick="return sl(this,'','gd-fullgd_1');">Allergies Guide</a>

                                        </div>
                                    </div>
                                    <div class="moduleSpacer_rdr"></div>
                                    <div class="number_fmt">1</div>
                                    <div class="chapter_fmt"> <a href="http://www.webmd.com/allergies/guide/allergies-overview" onclick="return sl(this,'','gd-fullgd_2');">Allergy Facts</a>

                                    </div>
                                    <div class="number_fmt">2</div>
                                    <div class="chapter_fmt"> <a href="http://www.webmd.com/allergies/guide/allergy-symptoms-types"
                                        onclick="return sl(this,'','gd-fullgd_3');">Allergy Types</a>

                                    </div>
                                    <div class="number_fmt">3</div>
                                    <div class="chapter_fmt"> <a href="http://www.webmd.com/allergies/guide/allergies-diagnosis-tests"
                                        onclick="return sl(this,'','gd-fullgd_4');">Allergy Tests</a>

                                    </div>
                                    <div class="number_fmt">4</div>
                                    <div class="chapter_fmt"> <a href="http://www.webmd.com/allergies/guide/allergies-treatment-care"
                                        onclick="return sl(this,'','gd-fullgd_5');">Allergy Treatment</a>

                                    </div>
                                    <div class="number_fmt">5</div>
                                    <div class="chapter_fmt"> <a href="http://www.webmd.com/allergies/guide/allergies-living-managing"
                                        onclick="return sl(this,'','gd-fullgd_6');">Living &amp; Managing</a>

                                    </div>
                                    <div class="number_fmt">6</div>
                                    <div class="chapter_fmt"> <a href="http://www.webmd.com/allergies/guide/allergies-support-resources"
                                        onclick="return sl(this,'','gd-fullgd_7');">Allergy Resources</a>

                                    </div>
                                </div>
                                <div class="bottom_fmt"></div>
                            </div>
                            <script type="text/javascript">
                                var chapters = [
                                                                    'http://www.webmd.com/allergies/guide/default.htm', 
                                                        
                                			'http://www.webmd.com/allergies/guide/allergies-overview',
                                			
                                			'http://www.webmd.com/allergies/guide/allergy-symptoms-types',
                                			
                                			'http://www.webmd.com/allergies/guide/allergies-diagnosis-tests',
                                			
                                			'http://www.webmd.com/allergies/guide/allergies-treatment-care',
                                			
                                			'http://www.webmd.com/allergies/guide/allergies-living-managing',
                                			
                                			'http://www.webmd.com/allergies/guide/allergies-support-resources',
                                			'',''];
                                
                                				
                                		var c1_1 = [
                                			'http://www.webmd.com/allergies/guide/allergy-basics',
                                			'http://www.webmd.com/allergies/guide/eye-allergies-1',
                                			'http://www.webmd.com/allergies/guide/chronic-allergies-causes',];
                                	
                                		var c1_2 = [
                                			'http://www.webmd.com/allergies/guide/allergic-reaction-causes',
                                			'http://www.webmd.com/allergies/guide/allergy-triggers',
                                			'http://www.webmd.com/allergies/guide/nasal-polyps-symptoms-and-treatments'];
                                	
                                		var c1_3 = [
                                			'http://www.webmd.com/allergies/guide/who-gets-allergies'];
                                	
                                		var c1_4 = [
                                			'http://www.webmd.com/allergies/guide/allergy-prevention',
                                			'http://www.webmd.com/allergies/guide/neti-pot-nasal-irrigation-pros-and-cons'];
                                	
                                		var c1_5 = [
                                			'http://www.webmd.com/allergies/guide/asthma-allergies',
                                			'http://www.webmd.com/allergies/guide/sleep-and-allergies',
                                			'http://www.webmd.com/allergies/guide/allergies-sinusitis',
                                			'http://www.webmd.com/allergies/guide/anaphylaxis'];
                                	
                                		var c2_1 = [
                                			'http://www.webmd.com/allergies/guide/food-allergy-intolerances',
                                			'http://www.webmd.com/allergies/guide/milk-allergy',
                                			'http://www.webmd.com/allergies/guide/egg-allergy',
                                			'http://www.webmd.com/allergies/guide/wheat-allergy',
                                			'http://www.webmd.com/allergies/guide/nut-allergy',
                                			'http://www.webmd.com/allergies/guide/fish-allergy',
                                			'http://www.webmd.com/allergies/guide/shellfish-allergy',
                                			'http://www.webmd.com/allergies/guide/sulfite-sensitivity',
                                			'http://www.webmd.com/allergies/guide/soy-allergy',
                                			'http://www.webmd.com/allergies/guide/casein-allergy-overview'];
                                	
                                		var c2_2 = [
                                			'http://www.webmd.com/allergies/guide/spring-allergies',
                                			'http://www.webmd.com/allergies/guide/summer-allergies',
                                			'http://www.webmd.com/allergies/guide/fall-allergy-relief',
                                			'http://www.webmd.com/allergies/guide/winter-allergies'];
                                	
                                		var c2_3 = [
                                			'http://www.webmd.com/allergies/guide/dog-allergies',
                                			'http://www.webmd.com/allergies/guide/cat-allergies'];
                                	
                                		var c2_4 = [
                                			'http://www.webmd.com/allergies/guide/understanding-hay-fever-basics',
                                			'http://www.webmd.com/allergies/guide/conjunctivitis',
                                			'http://www.webmd.com/allergies/guide/hives-urticaria-angioedema',
                                			'http://www.webmd.com/allergies/guide/poison-ivy-oak-sumac',
                                			'http://www.webmd.com/allergies/guide/insect-stings',
                                			'http://www.webmd.com/allergies/guide/mold-allergy',
                                			'http://www.webmd.com/allergies/guide/pollen-allergies-symptoms-triggers-treatments',
                                			'http://www.webmd.com/allergies/guide/sun-reactions',
                                			'http://www.webmd.com/allergies/guide/salicylate-allergy',
                                			'http://www.webmd.com/allergies/guide/cosmetics',
                                			'http://www.webmd.com/allergies/guide/nickel-jewelry-allergy',
                                			'http://www.webmd.com/allergies/guide/drug-allergies',
                                			'http://www.webmd.com/allergies/guide/dust-allergies',
                                			'http://www.webmd.com/allergies/guide/chemical-allergies',
                                			'http://www.webmd.com/allergies/guide/penicillin-allergy-topic-overview'];
                                	
                                		var c3_1 = [
                                			'http://www.webmd.com/allergies/guide/allergies-doctor-exam',
                                			'http://www.webmd.com/allergies/guide/food-allergy-testing',
                                			'http://www.webmd.com/allergies/guide/food-allergy-symptom-diary',
                                			'http://www.webmd.com/allergies/guide/allergies-elimination-diet'];
                                	
                                		var c3_2 = [
                                			'http://www.webmd.com/allergies/guide/skin-test',
                                			'http://www.webmd.com/allergies/guide/blood-test'];
                                	
                                		var c4  = [
                                			'http://www.webmd.com/allergies/guide/allergy-medications',
                                			'http://www.webmd.com/allergies/guide/antihistamines-for-allergies',
                                			'http://www.webmd.com/allergies/guide/decongestants',
                                			'http://www.webmd.com/allergies/guide/anticholinergic-nasal-allergy-sprays',
                                			'http://www.webmd.com/allergies/guide/steroid_nasal_sprays',
                                			'http://www.webmd.com/allergies/guide/allergy-eye-drops',
                                			'http://www.webmd.com/allergies/guide/singulair-leukotriene-inhibitors',
                                			'http://www.webmd.com/allergies/guide/mast-cell-inhibitors',
                                			'http://www.webmd.com/allergies/guide/allergy-shots',
                                			'http://www.webmd.com/allergies/guide/skin-allergies',
                                			'http://www.webmd.com/allergies/guide/dehumidifiers-for-allergies',
                                			'http://www.webmd.com/allergies/guide/allergies-when-to-use-auto-injector'];
                                		
                                		var c5  = [
                                			'http://www.webmd.com/allergies/guide/allergic-reaction-home-treatment-options',
                                			'http://www.webmd.com/allergies/guide/food-diary-helping-uncover-food-allergy-triggers',
                                			'http://www.webmd.com/allergies/guide/dust-mite-mattress-and-pillow-covers-for-allergy-relief',
                                			'http://www.webmd.com/allergies/guide/allergy-proof-your-environment',
                                			'http://www.webmd.com/allergies/guide/tips-for-handling-allergies-in-school'];
                                		
                                		var c6  = [
                                			'http://www.webmd.com/allergies/guide/resource',
                                			'http://www.webmd.com/allergies/guide/allergy-suggested-reading',];
                            </script>
                            <script type="text/javascript">
                                function definePage () {
                                
                                	var parentChapter, tabChapter, s_pagenameCheck;
                                	var subChapter ="1";
                                	var theUrl=location.href;
                                	s_pagenameCheck = theUrl.toLowerCase();
                                	
                                	if (s_pagenameCheck.lastIndexOf("?")  >  0) {
                                		var s_pagenameCheck = s_pagenameCheck.substring(0,s_pagenameCheck.lastIndexOf("?"));
                                	} 
                                					
                                		if( s_pagenameCheck in oc(chapters) ) { 
                                		parentChapter = s_pagenameCheck;
                                		highlightLeftBin(parentChapter);
                                                  highlightCenterBin(parentChapter);
                                		highlightTab();
                                		} else {
                                		
                                		if( s_pagenameCheck in oc(c1_1) ) { parentChapter = chapters[1]; tabChapter = "1";subChapter = "1";}
                                	
                                		if( s_pagenameCheck in oc(c1_2) ) { parentChapter = chapters[1]; tabChapter = "1";subChapter = "2";}
                                	
                                		if( s_pagenameCheck in oc(c1_3) ) { parentChapter = chapters[1]; tabChapter = "1";subChapter = "3";}
                                	
                                		if( s_pagenameCheck in oc(c1_4) ) { parentChapter = chapters[1]; tabChapter = "1";subChapter = "4";}
                                	
                                		if( s_pagenameCheck in oc(c1_5) ) { parentChapter = chapters[1]; tabChapter = "1";subChapter = "5";}
                                	
                                		if( s_pagenameCheck in oc(c2_1) ) { parentChapter = chapters[2]; tabChapter = "2";subChapter = "1";}
                                	
                                		if( s_pagenameCheck in oc(c2_2) ) { parentChapter = chapters[2]; tabChapter = "2";subChapter = "2";}
                                	
                                		if( s_pagenameCheck in oc(c2_3) ) { parentChapter = chapters[2]; tabChapter = "2";subChapter = "3";}
                                	
                                		if( s_pagenameCheck in oc(c2_4) ) { parentChapter = chapters[2]; tabChapter = "2";subChapter = "4";}
                                	
                                		if( s_pagenameCheck in oc(c3_1) ) { parentChapter = chapters[3]; tabChapter = "3";subChapter = "1";}
                                	
                                		if( s_pagenameCheck in oc(c3_2) ) { parentChapter = chapters[3]; tabChapter = "3";subChapter = "2";}
                                	
                                			if( s_pagenameCheck in oc(c4) ) { parentChapter = chapters[3]; tabChapter = "4";}
                                			
                                			if( s_pagenameCheck in oc(c5) ) { parentChapter = chapters[4]; tabChapter = "5";}
                                			
                                			if( s_pagenameCheck in oc(c6) ) { parentChapter = chapters[5]; tabChapter = "6";}
                                			
                                			if ((typeof(parentChapter)!="undefined")  &  (typeof(tabChapter)!="undefined")) {
                                			highlightLeftBin(parentChapter);
                                                           highlightCenterBin(parentChapter);
                                			setNavState(tabChapter, subChapter);
                                			}
                                		}
                                	}
                                	
                                	definePage();
                            </script>
                            <div class="moduleSpacer_rdr"></div>
                        </div>
                        <div id="ContentPane32"></div>
                        <div id="ContentPane33"></div>
                        <div id="ContentPane34"></div>
                        <div id="ContentPane26">
                            <div class="gen_ll" id="lln-rltdto">
                                 <h3>Related to Allergies</h3>

                                <ul>
                                    <li class="first"> <a href="http://www.webmd.com/asthma/default.htm" onclick="return sl(this,'','lln-rltdto_1');">Asthma</a>

                                    </li>
                                    <li class="odd"> <a href="http://www.webmd.com/cold-and-flu/default.htm" onclick="return sl(this,'','lln-rltdto_2');">Cold, Cough &amp; Flu</a>

                                    </li>
                                    <li> <a href="http://www.webmd.com/interaction-checker/default.htm" onclick="return sl(this,'','lln-rltdto_3');">Drug Interaction Checker</a>

                                    </li>
                                    <li class="odd"> <a href="http://www.webmd.com/eye-health/ss/slideshow-eye-allergies" onclick="return sl(this,'','lln-rltdto_4');"
                                        class="type_ss">Eye Allergies<i> </i></a>

                                    </li>
                                    <li> <a href="http://www.webmd.com/allergies/guide/food-allergy-intolerances"
                                        onclick="return sl(this,'','lln-rltdto_5');">Food Allergies</a>

                                    </li>
                                    <li class="odd"> <a href="http://symptoms.webmd.com/seasonal-allergy-map-tool/default.htm"
                                        onclick="return sl(this,'','lln-rltdto_6');">Map: Track Allergy Symptoms</a>

                                    </li>
                                    <li> <a href="http://www.webmd.com/skin-problems-and-treatments/default.htm"
                                        onclick="return sl(this,'','lln-rltdto_7');">Skin Problems &amp; Treatments</a>

                                    </li>
                                    <li class="odd last"> <a href="http://www.webmd.com/allergies/directory-index" onclick="return sl(this,'','lln-rltdto_8');">More Related Topics </a>

                                    </li>
                                </ul>
                            </div>
                        </div>
                        <div id="ContentPane35"></div>
                        <div id="ContentPane36"></div>
                        <div id="ContentPane37"></div>
                        <div id="ContentPane27">
                            <!--<ul><li>$adsystem = DFP</li><li>$pos = 113</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 600</li><li>iframewidth = 160</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 113</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
                            <script>
                                var priTopId='1625', secTopId='';
                            </script>
                            <div id="leftAd_rdr">
                                <div class="leftAd_top_fmt"></div>
                                <div id="leftAd_fmt" class="leftAd_BG_fmt loaded">
                                    <div id="ads2-pos-113-ad" class="ad_placeholder"></div>
                                </div>
                                <div class="leftAd_bottom_fmt"></div>
                            </div>
                            <div class="moduleSpacer_rdr"></div>
                            <script>
                                webmd.ads2Consumer.defineAd({targets:{art:'091e9c5e810fb2ee',cc:'17',env:'',hcent:'893',leaf:'&amp;leaf=',mcent:'',mic:'',pt:'1625',sec:'',pug:'__',scent:'',tmg:'',tug:'2321',uri:'%2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings'},blockCodes:'_age121_l23_age122_j30_t780_',id:'ads2-pos-113-ad',pos:'113',sizes:[160,600]});
                            </script>
                        </div>
                        <div id="ContentPane38"></div>
                        <div id="ContentPane39"></div>
                    </div>
                </div>
                <div id="thirdCol_area">
                    <div id="thirdCol_ctr">
                        <div id="ContentPane40"></div>
                        <div id="ContentPane41"></div>
                        <div id="ContentPane21">
                            <div id="ed-urr" class="unified_right_v2_rdr">
                                 <h2>Today on WebMD</h2>

                                <div class="unified_right_inner_v2_rdr">
                                    <div class="entry_fmt" id="x52"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','ed-urr_1othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2013/01_2013/cdc_flu_update_02012013xml/110x70_cdc_flu_update_02012013xml.jpg" alt="man blowing nose"/>
      </a>

                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','ed-urr_1othr');">12 Natural Ways to Defeat Allergies</a>

                                        </div>
                                        <div class="header_fmt">Make these tweaks to your diet, home, and lifestyle.</div>
                                    </div>
                                    <div class="entry_fmt" id="x53"> <a href="http://www.webmd.com/allergies/ss/slideshow-nasal-allergy-relief-products"
                                        onclick="return sl(this,'','ed-urr_2othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/nasal_allergy_relief/110x70_nasal_allergy_relief.jpg" alt="Allergy capsule"/>
      </a>

                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-nasal-allergy-relief-products"
                                            onclick="return sl(this,'','ed-urr_2othr');">Need Nasal Allergy Relief?</a>

                                        </div>
                                        <div class="header_fmt">Breathe easier with these products.</div>
                                    </div>
                                    <div class="clear_fmt">&nbsp;</div>
                                    <div class="entry_fmt" id="x54"> <a href="http://www.webmd.com/allergies/ss/slideshow-pets-and-allergies"
                                        onclick="return sl(this,'','ed-urr_3othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/health_checks/pet_health_evaluator_healthcheck/110x70_pet_health_evaluator_cat_healthcheck.jpg" alt="cat on couch"/>
      </a>

                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-pets-and-allergies"
                                            onclick="return sl(this,'','ed-urr_3othr');">5 Tips to Cut Pet Allergies</a>

                                        </div>
                                        <div class="header_fmt">Live in harmony with your cat or dog.</div>
                                    </div>
                                    <div class="entry_fmt" id="x55"> <a href="http://www.webmd.com/allergies/ss/slideshow-common-allergy-triggers"
                                        onclick="return sl(this,'','ed-urr_4othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/allergy_triggers_slideshow/110x70_allergy_triggers_slideshow.jpg" alt="Woman sneezing with tissue in meadow"/>
      </a>

                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-common-allergy-triggers"
                                            onclick="return sl(this,'','ed-urr_4othr');">10 Common Allergy Triggers</a>

                                        </div>
                                        <div class="header_fmt">Which ones affect you?</div>
                                    </div>
                                    <div class="clear_fmt">&nbsp;</div>
                                </div>
                            </div>
                            <script class="oas_template" id="urr_V20" type="text/html">
                                <a onclick="return sl(this,'','thumb-link0_{link_position}{onclick_append}');" href="{href}">
                                    <img src="{img}" alt="{alt_text}" />
                                  </a>
                                  <div class="link_fmt">
                                    <a onclick="return sl(this,'','thumb-link0_{link_position}{onclick_append}');" href="{href}">{alt}</a>
                                  </div>
                                  <div class="header_fmt">{text}</div>
                            </script>
                            <script type="text/javascript">
                                webmd.oas = window.webmd.oas || {}; webmd.oas.mapping = window.webmd.oas.mapping || {};
                                			webmd.oas.mapping['urr_V20'] = ['x52','x53','x54','x55'];
                            </script>
                        </div>
                        <div id="ContentPane42"></div>
                        <div id="ContentPane43"></div>
                        <div id="ContentPane44"></div>
                        <div id="ContentPane24">
                            <!--<ul><li>$adsystem = DFP</li><li>$pos = 121</li><li>$print = false</li></ul><ul><li>adtype = iFRAME</li><li>iframeheight = 250</li><li>iframewidth = 300</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 121</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
                            <script>
                                var priTopId='1625', secTopId='';
                            </script>
                            <div id="rightAd_rdr">
                                <div class="rightAd_top_fmt"></div>
                                <div id="rightAd_fmt" class="rightAd_BG_fmt loaded">
                                    <div id="ads2-pos-121-ad" class="ad_placeholder"></div>
                                </div>
                                <div class="rightAd_bottom_fmt"></div>
                            </div>
                            <div class="moduleSpacer_rdr"></div>
                            <script>
                                webmd.ads2Consumer.defineAd({targets:{art:'091e9c5e810fb2ee',cc:'17',env:'',hcent:'893',leaf:'&amp;leaf=',mcent:'',mic:'',pt:'1625',sec:'',pug:'__',scent:'',tmg:'',tug:'2321',uri:'%2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings'},blockCodes:'_age121_l23_age122_j30_t780_',id:'ads2-pos-121-ad',pos:'121',sizes:[[300,250],[300, 600],[300,1050]]});
                            </script>
                            <div id="thumb-link1" class="unified_right_rdr">
                                 <h2></h2>

                                <div class="unified_right_inner_rdr">
                                    <div class="entry_fmt" id="x20"> <a href="http://www.webmd.com/allergies/features/the-truth-about-mucus"
                                        onclick="return sl(this,'','thumb-link1_1othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/features/_2012/04_2012/truth_about_mucus_features/69x75_truth_about_mucus_features.jpg" alt="blowing nose"/>
      </a>

                                        <div class="header_fmt">Article</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/features/the-truth-about-mucus"
                                            onclick="return sl(this,'','thumb-link1_1othr');">The Truth About Mucus</a>

                                        </div>
                                    </div>
                                    <div class="entry_fmt" id="x21"> <a href="http://www.webmd.com/allergies/postnasal-drip" onclick="return sl(this,'','thumb-link1_2othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2011/11_2011/acne_and_sore_throat/69x75_acne_and_sore_throat.jpg" alt="woman with sore throat"/>
      </a>

                                        <div class="header_fmt">Article</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/postnasal-drip" onclick="return sl(this,'','thumb-link1_2othr');">What Is Postnasal Drip?</a>

                                        </div>
                                    </div>
                                    <div class="clear_fmt">&nbsp;</div>
                                    <div class="entry_fmt" id="x22"> <a href="http://www.webmd.com/allergies/ss/slideshow-bad-bugs" onclick="return sl(this,'','thumb-link1_3ss');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/news/2012/08_2012/new_tickborne_disease/69x75_new_tickborne_disease.jpg" alt="lone star tick"/>
      </a>

                                        <div class="header_fmt">Slideshow</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-bad-bugs" onclick="return sl(this,'','thumb-link1_3ss');">Identify Bugs and Their Bites</a>

                                        </div>
                                    </div>
                                    <div class="entry_fmt" id="x23"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','thumb-link1_4ss');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/slideshows/12_natural_ways_to_defeat_allergies/69x75_12_natural_ways_to_defeat_allergies.jpg" alt="Woman blowing nose"/>
      </a>

                                        <div class="header_fmt">Slideshow</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/ss/slideshow-natural-relief" onclick="return sl(this,'','thumb-link1_4ss');">12 Natural Ways to Defeat Allergies</a>

                                        </div>
                                    </div>
                                    <div class="clear_fmt">&nbsp;</div>
                                    <script class="oas_template" id="oas_urr_1" type="text/html">
                                        <a onclick="return sl(this,'','thumb-link1_{link_position}{onclick_append}');" href="{href}">
                                            <img src="{img}" alt="{alt_text}" />
                                          </a>
                                          <div class="header_fmt">{text}</div>
                                          <div class="link_fmt">
                                            <a onclick="return sl(this,'','thumb-link1_{link_position}{onclick_append}');" href="{href}">{alt}</a>
                                          </div>
                                    </script>
                                    <script type="text/javascript">
                                        webmd.oas = window.webmd.oas || {}; webmd.oas.mapping = window.webmd.oas.mapping || {};
                                        			webmd.oas.mapping['oas_urr_1'] = ['x20','x21','x22','x23'];
                                    </script>
                                </div>
                            </div>
                        </div>
                        <div id="ContentPane45">
                            <style>
                                #allergyappsmsemailgen90 {
                                	box-sizing: border-box;
                                	position: relative;
                                	width: 300px;
                                	height: 90px;
                                	padding: 5px 9px 0 79px;
                                	background: url(http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/mobile/app-marketing/allergy/modules/gen_allergy_woman_sneezing_sm.jpg) no-repeat 10px 50%;
                                	border: 1px solid #989898;
                                	font-family: 'Lato', sans-serif;
                                	margin: 0 auto 1em;
                                }
                                #allergyappsmsemailgen90,
                                #allergyappsmsemailgen90 p,
                                #allergyappsmsemailgen90 a,
                                #allergyappsmsemailgen90 input,
                                #allergyappsmsemailgen90 label,
                                #allergyappsmsemailgen90 h1,
                                #allergyappsmsemailgen90 h2,
                                #allergyappsmsemailgen90 h4,
                                #allergyappsmsemailgen90 .pane h1,
                                #allergyappsmsemailgen90 .pane h2 {
                                	font-family: 'Lato', sans-serif;
                                }
                                
                                #allergyappsmsemailgen90 *,
                                #allergyappsmsemailgen90 *:before,
                                #allergyappsmsemailgen90 *:after {
                                	box-sizing: border-box;
                                }
                                #allergyappsmsemailgen90 .pane {
                                	display: block;
                                }
                                /*#allergyappsmsemailgen90 .paneIntro,*/
                                #allergyappsmsemailgen90 .paneSystemError {
                                	display: none;
                                }
                                #allergyappsmsemailgen90 .paneBusy {
                                	display: none;
                                	margin-top: 1em;
                                	overflow: hidden;
                                }
                                #allergyappsmsemailgen90 .paneBusy p {
                                	line-height: 20px;
                                	float: left;
                                	margin-left: .5em;
                                }
                                #allergyappsmsemailgen90 .loading_small {
                                	float: left;
                                }
                                #allergyappsmsemailgen90 .paneSystemError p {
                                	margin: 10px 0;
                                }
                                #allergyappsmsemailgen90 .paneDone {
                                	display: none;
                                }
                                #allergyappsmsemailgen90 h1 {
                                	margin: 12px 0 0 0;
                                	line-height: 1em;
                                	color: #222;
                                	font-size: 27px;
                                	font-weight: bold;
                                }
                                #allergyappsmsemailgen90 h2 {
                                	margin: 18px 0 10px 0;
                                	line-height: 1em;
                                	color: #222;
                                	font-size: 18px;
                                	font-weight: normal;
                                }
                                #allergyappsmsemailgen90 h3 {
                                	margin: 0;
                                	line-height: 1em;
                                	color: #222;
                                	font-size: 14px;
                                	font-weight: bold;
                                }
                                #allergyappsmsemailgen90 p {
                                	margin: 0;
                                	line-height: 1em;
                                	color: #222;
                                	font-size: 14px;
                                	font-weight: normal;
                                }
                                #allergyappsmsemailgen90 .allergyapplogo {
                                	width: 163px;
                                	height: 20px;
                                	font-size: 0;
                                	line-height: 0;
                                	background: url(http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/mobile/app-marketing/allergy/modules/webmd-allergy-app-logo_163x20.png);
                                }
                                #allergyappsmsemailgen90 form {
                                	position: absolute;
                                	bottom: 0;
                                	left: 0;
                                	width: 100%;
                                	height: 64px;
                                	padding: 0 9px 9px 79px;
                                	display: none;
                                }
                                #allergyappsmsemailgen90 .sender,
                                #allergyappsmsemailgen90 .controls {
                                	float: left;
                                }
                                #allergyappsmsemailgen90 form p {
                                	color: #222;
                                	line-height: 1em;
                                	font-size: 14px;
                                	font-weight: bold;
                                	text-align:left;
                                }
                                #allergyappsmsemailgen90 input[type=text] {
                                	position: absolute;
                                	bottom: 4px;
                                	left: 79px;
                                	width: 133px;
                                	height: 30px;
                                	margin: 0 10px 0 0;
                                	padding: 0 4px;
                                	background: #fff;
                                	color: #666;
                                	border: 1px solid #d5d5d5;
                                	border-radius: 3px;
                                	font-size: 14px;
                                	font-weight: normal;
                                }
                                #allergyappsmsemailgen90 input[type=submit] {
                                	position: absolute;
                                	bottom: 4px;
                                	right: 9px;
                                	width: 67px;
                                	height: 30px;
                                	margin: 0;
                                	padding: 0;
                                	background: #f57f20;
                                	color: #fff;
                                	border: none;
                                	border-radius: 3px;
                                	font-size: 15px;
                                	font-weight: bold;
                                }
                                #allergyappsmsemailgen90 input.invalid {
                                	background: #fcc;
                                	border: 1px solid #ffb3b3;
                                	box-shadow: inset 0 0 1.2rem #ffabab;
                                	color: #f33;
                                }
                            </style>
                            <div id="allergyappsmsemailgen90" class="small">
                                <div class="allergyapplogo thankyou">WebMD Allergy App</div>
                                <div class="pane paneForm">
                                    <form action="#" method="get">
                                        <p>Send yourself a link to download the app.</p>
                                        <div class="sender">
                                            <input type="text" id="email" name="toAddress" value="Your email address"
                                            class="placeholder"/>
                                        </div>
                                        <div class="controls">
                                            <input type="submit" value="Submit"/>
                                        </div>
                                    </form>
                                </div>
                                <div class="pane paneBusy">
                                    <div class="loading_small">Loading ...</div>
                                    <p>Please wait...</p>
                                </div>
                                <div class="pane paneSystemError">
                                    <p>This feature is temporarily unavailable. Please try again later.</p>
                                </div>
                                <div class="pane paneDone">
                                    	<h3>Thanks!</h3>

                                    <p>Now check your email account on your mobile phone to download your new
                                        app.</p>
                                </div>
                            </div>
                            <script type="text/javascript">
                                require(['allergy_app/1/allergy_app_sms_email'], function(allergyappsmsemail) {
                                		var allergyappsmsemailgen90 =  webmd.object(allergyappsmsemail);
                                		allergyappsmsemailgen90.init({wrapper:'allergyappsmsemailgen90'});
                                	});
                            </script>
                        </div>
                        <div id="ContentPane46">
                            <div id="thumb-link2" class="unified_right_rdr">
                                 <h2></h2>

                                <div class="unified_right_inner_rdr">
                                    <div class="entry_fmt" id="x24"> <a href="http://www.webmd.com/allergies/guide/cat-allergies" onclick="return sl(this,'','thumb-link2_1othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/features/_2011/11_2011/healthy_cat_gift_guide_features/69x75_healthy_cat_gift_guide_features.jpg" alt="cat lying on shelf"/>
      </a>

                                        <div class="header_fmt">Article</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/guide/cat-allergies" onclick="return sl(this,'','thumb-link2_1othr');">Causes of Cat Allergies</a>

                                        </div>
                                    </div>
                                    <div class="entry_fmt" id="x25"> <a href="http://www.webmd.com/allergies/indoor-outdoor-relief-14/video-allergy-testing-and-shots"
                                        onclick="return sl(this,'','thumb-link2_2othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/reference_guide/allergy_tests_ref_guide/69x75_allergy_tests_ref_guide.jpg" alt="Allergy prick test"/>
      </a>

                                        <div class="header_fmt">VIDEO</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/indoor-outdoor-relief-14/video-allergy-testing-and-shots"
                                            onclick="return sl(this,'','thumb-link2_2othr');">Types of Allergy Tests</a>

                                        </div>
                                    </div>
                                    <div class="clear_fmt">&nbsp;</div>
                                    <div class="entry_fmt" id="x26"> <a href="http://www.webmd.com/allergies/allergies-assessment/default.htm"
                                        onclick="return sl(this,'','thumb-link2_3othr');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/health_checks/allergy_sinus_symptoms_evaluator/69x75_allergy_sinus_symptoms_evaluator.jpg" alt="Man sneezing into tissue"/>
      </a>

                                        <div class="header_fmt">Assessment</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/allergies-assessment/default.htm"
                                            onclick="return sl(this,'','thumb-link2_3othr');">Get Personalized Allergy &amp; Sinus Tips</a>

                                        </div>
                                    </div>
                                    <div class="entry_fmt" id="x27"> <a href="http://www.webmd.com/allergies/rm-quiz-indoor-allergies" onclick="return sl(this,'','thumb-link2_4rmq');">
        <img src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/article_thumbnails/quizzes/indoor_allergies_rmq/69x75_indoor_allergies_rmq.jpg" alt="Woman holding feather duster up to face, twitching"/>
      </a>

                                        <div class="header_fmt">Quiz</div>
                                        <div class="link_fmt"> <a href="http://www.webmd.com/allergies/rm-quiz-indoor-allergies" onclick="return sl(this,'','thumb-link2_4rmq');">Test Your Indoor Allergy Smarts</a>

                                        </div>
                                    </div>
                                    <div class="clear_fmt">&nbsp;</div>
                                    <script class="oas_template" id="oas_urr_2" type="text/html">
                                        <a onclick="return sl(this,'','thumb-link2_{link_position}{onclick_append}');" href="{href}">
                                            <img src="{img}" alt="{alt_text}" />
                                          </a>
                                          <div class="header_fmt">{text}</div>
                                          <div class="link_fmt">
                                            <a onclick="return sl(this,'','thumb-link2_{link_position}{onclick_append}');" href="{href}">{alt}</a>
                                          </div>
                                    </script>
                                    <script type="text/javascript">
                                        webmd.oas = window.webmd.oas || {}; webmd.oas.mapping = window.webmd.oas.mapping || {};
                                        			webmd.oas.mapping['oas_urr_2'] = ['x24','x25','x26','x27'];
                                    </script>
                                </div>
                            </div>
                        </div>
                        <div id="ContentPane47"></div>
                        <div id="ContentPane25">
                            <div id="newsletter-mapping-center"></div>
                            <script type="text/javascript">
                                require(['newsletter/1/mapping-centers-desktop','css!newsletter/1/newsletter-module-desktop.css'], function(module){
                                    module.init({
                                      selector: "#newsletter-mapping-center",
                                      template: {
                                        successMsg: '&lt;p class="success">&lt;span>{email}&lt;/span>&lt;br //>You will receive your first newsletter with our next scheduled circulation!&lt;/p>',
                                        content: '' +
                                          '&lt;div class="newsletterFmt">&lt;/div>\n' +
                                          '&lt;div class="wrapper">\n' +
                                          '&lt;div class="nls-header">{header}&lt;/div>\n' +
                                          '{preContent}' +
                                          '&lt;div class="nls-content">\n' +
                                          '{preForm}' +
                                          '&lt;form class="nls-form" action="#" novalidate="novalidate">\n' +
                                          '&lt;div class="validationWrapper">&lt;div class="checkbox-container clearfix">{inputs}&lt;/div>&lt;/div>\n' +
                                          '&lt;div class="privacy-disclaimer">' + 
                                          "&lt;em>By clicking submit I agree to WebMD's &lt;a href='http://www.webmd.com/about-webmd-policies/about-privacy-policy' target='_blank'>Privacy Policy&lt;/a>&lt;/em>" +
                                          '&lt;/div>' +
                                          '&lt;div class="input-container">\n' +
                                          '&lt;div class="email-container validationWrapper">\n' +
                                          '&lt;input type="email" class="nls-email" name="email" autocapitalize="off" autocorrect="off" placeholder="Enter email address" /> ' +
                                          '&lt;button name="nl-submit" formnovalidate class="off {submitClass}" type="submit">&lt;span>Submit&lt;/span>&lt;/button>\n' +
                                          '&lt;div class="clearfix">&lt;/div>' +
                                          '&lt;/div>\n' + // .email-container
                                          '&lt;/div>\n' + // .input-container
                                          '&lt;/form>\n' +
                                          '&lt;a class="nl-link" href="https://member.webmd.com/newsletters/newsletters.aspx" onclick="return sl(this,"nw","nl-multie_s")">Sign up for more topics!&lt;/a>' +
                                          '{postForm}' +
                                          '&lt;/div>\n' + // .nls-content
                                          '{postContent}' + 
                                          '&lt;/div>',
                                          submitClass: 'webmd-btn webmd-btn-pr webmd-btn-s',
                                          successHeader: '&lt;h2>Thank You For Signing Up.&lt;/h2>',
                                          promo: '&lt;div class="promo">&lt;div class="promo-content clearfix">&lt;img src="{image}" alt="WebMD App" />&lt;div class="promo-description">&lt;p>{text}&lt;/p>&lt;p class="promoLink">&lt;a href="{url}" class="webmd-btn webmd-btn-pr webmd-btn-m" onclick="wmdPageLink(\'nlupgrd_sub\')">{button}&lt;/a>&lt;/p>&lt;div class="clearfix">&lt;/div>&lt;/div>&lt;/div>&lt;/div>'
        
                                      }
                                    });
                                  });
                            </script>
                            <div class="specialSectionsList_rdr" id="lln-spec">
                                <div class="tomtest"></div>
                                <div class="headTop_fmt"></div>
                                <div class="header_fmt">
                                     <h3>WebMD Special Sections</h3>

                                </div>
                                <div class="headBot_fmt"></div>
                                <div class="content_fmt">
                                    <ul>
                                        <li> <a href="http://www.webmd.com/allergies/indoor-outdoor-relief-14/video-allergy-testing-and-shots"
                                            onclick="return sl(this,'','lln-spec_1');">Indoor and Outdoor Allergy Relief</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/anaphylaxis-15/default.htm" onclick="return sl(this,'','lln-spec_2');">Anaphylaxis: When Allergies Threaten Lives</a>

                                        </li>
                                        <li> <a href="http://symptoms.webmd.com/seasonal-allergy-map-tool/default.htm"
                                            onclick="return sl(this,'','lln-spec_3');">Seasonal Allergy Symptoms Nationwide</a>

                                        </li>
                                        <li> <a href="http://www.webmd.com/allergies/sinus-pain-pressure-11/default.htm"
                                            onclick="return sl(this,'','lln-spec_4');">Help for Sinus Pain and Pressure</a>

                                        </li>
                                    </ul>
                                </div>
                                <div class="bot_fmt"></div>
                            </div>
                            <div class="moduleSpacer_rdr"></div>
                        </div>
                        <div id="ContentPane48"></div>
                        <div id="ContentPane49"></div>
                    </div>
                </div>
            </div>
        </div>
        <div id="footer_rdr">
            <div id="ContentPane28"></div>
            <div id="ContentPane23">
                <script type="text/javascript">
                    (function(){
                            var module_title = 'hicb f-hs';
                            var propIsSet = false;
                            
                            $(document).bind('before_pv', function(){
                              if (!propIsSet) {
                                  if (s_md.prop46) {
                                      s_md.prop46 += "|";
                                  }
                                s_md.prop46 += module_title;
                                propIsSet = true;
                              }
                              webmd.metrics.ctr.addImpression(module_title);
                              webmd.metrics.ctr.getImpressions();
                            });
                        })();
                </script>
                <div id="sp_ft_rdr">
                     <h3>Health Solutions <span>From Our Sponsors</span></h3>

                    <div class="hs_cols">
                        <ul>
                            <li> <a href="http://www.webmd.com/women/pharmacist-14/video-sponsored-heart-disease"
                                onclick="return sl(this,'','hicb f-hs_1');">Controlling Heart Disease</a>

                            </li>
                            <li> <a href="http://www.webmd.com/women/pharmacist-14/video-sponsored-allergy"
                                onclick="return sl(this,'','hicb f-hs_2');">Allergy Relief</a>

                            </li>
                            <li> <a href="http://www.webmd.com/digestive-disorders/lactose-intolerance-14/real-dairy-no-discomfort"
                                onclick="return sl(this,'','hicb f-hs_3');">Lactose Intolerant?</a>

                            </li>
                        </ul>
                        <ul>
                            <li> <a href="http://www.webmd.com/manage-ibsc-cic-symptoms/default.htm" onclick="return sl(this,'','hicb f-hs_4');">IBS-C Symptoms?</a>

                            </li>
                            <li> <a href="http://www.webmd.com/osteoarthritis/knee-pain-14/3-signs-new-treatment"
                                onclick="return sl(this,'','hicb f-hs_5');">Exercise &amp; OA Knee Pain</a>

                            </li>
                            <li> <a href="http://www.webmd.com/lung/copd/alpha-1-deficiency-14/alphakit-test"
                                onclick="return sl(this,'','hicb f-hs_6');">COPD and Alpha-1</a>

                            </li>
                        </ul>
                        <ul>
                            <li> <a href="http://www.webmd.com/digestive-disorders/lactose-intolerance-14/real-dairy-no-discomfort"
                                onclick="return sl(this,'','hicb f-hs_7');">Enjoy Dairy Everyday</a>

                            </li>
                            <li> <a href="http://www.webmd.com/women/pharmacist-14/video-sponsored-diabetes"
                                onclick="return sl(this,'','hicb f-hs_8');">Managing Diabetes</a>

                            </li>
                            <li> <a href="http://www.webmd.com/oral-health/healthy-mouth-14/video-oral-health-routine"
                                onclick="return sl(this,'','hicb f-hs_9');">21 Days: A New Routine</a>

                            </li>
                        </ul>
                        <ul>
                            <li> <a href="http://www.webmd.com/osteoarthritis/knee-pain-14/treat-oa-knee-pain"
                                onclick="return sl(this,'','hicb f-hs_10');">Knee Pain Relief</a>

                            </li>
                            <li> <a href="http://www.webmd.com/digestive-disorders/lactose-intolerance-14/real-dairy-no-discomfort"
                                onclick="return sl(this,'','hicb f-hs_11');">Replacing Milk</a>

                            </li>
                            <li> <a href="http://www.webmd.com/women/pharmacist-14/video-sponsored-child-meds"
                                onclick="return sl(this,'','hicb f-hs_12');">Children's Medicine</a>

                            </li>
                        </ul>
                        <ul>
                            <li> <a href="http://www.webmd.com/manage-ibsc-cic-symptoms/how-treatment-works"
                                onclick="return sl(this,'','hicb f-hs_13');">Frequent Constipation?</a>

                            </li>
                            <li> <a href="http://www.webmd.com/lung/copd/alpha-1-deficiency-14/alphakit-test"
                                onclick="return sl(this,'','hicb f-hs_14');">Can COPD Be Inherited?</a>

                            </li>
                            <li> <a href="http://www.webmd.com/manage-ibsc-cic-symptoms/default.htm" onclick="return sl(this,'','hicb f-hs_15');">Managing IBS-C Symptoms</a>

                            </li>
                        </ul>
                        <div class="clearing"></div>
                    </div>
                    <div class="prem_ed">
                        <div class="prem_ed_border">
                             <h5>More From WebMD:</h5>
 <a href="http://www.webmd.com/rheumatoid-arthritis/ss/slideshow-ra-overview"
                            onclick="return sl(this,'','f-idc_1');">RA Basics</a>|<a href="http://www.webmd.com/skin-problems-and-treatments/psoriasis/ss/slideshow-severe-psoriasis-9"
                            onclick="return sl(this,'','f-idc_2');">Severe Psoriasis</a>|<a href="http://www.webmd.com/men/erectile-dysfunction-13/slideshow-causes-of-ed"
                            onclick="return sl(this,'','f-idc_3');">ED Causes</a>|<a href="http://www.webmd.com/diabetes/ss/slideshow-blood-sugar-swings"
                            onclick="return sl(this,'','f-idc_4');">Blood Sugar Swings</a>|<a href="http://www.webmd.com/arthritis/psoriatic-arthritis/ss/slideshow-visual-guide-to-psoriatic-arthritis"
                            onclick="return sl(this,'','f-idc_5');">Psoriatic Arthritis</a>|<a href="http://www.webmd.com/multiple-sclerosis/ss/slideshow-multiple-sclerosis-overview"
                            onclick="return sl(this,'','f-idc_6');">Multiple Sclerosis Symptoms</a>|
                            <a
                            href="http://www.webmd.com/add-adhd/childhood-adhd/ss/slideshow-adhd-in-children"
                            onclick="return sl(this,'','f-idc_7');">ADHD in Children</a>|<a href="http://www.webmd.com/diabetes/10-diabetes-diet-myths"
                                onclick="return sl(this,'','f-idc_8');">Diabetes Diet Myths</a>
                        </div>
                    </div>
                </div>
                <div id="non_sp_ft_rdr">
                    <div class="social_links social_footer">
                        	<h6>Find us on:</h6>

                        <ul>
                            <li class="fb">	<a class="facebook" href="http://www.webmd.com/click?url=http%3A//www.facebook.com/%23!/WebMD%3Fref=ts"
                                onclick="return sl(this,'nw','soc_fb-f');"></a>

                            </li>
                            <li class="tw">	<a class="twitter" href="http://www.webmd.com/click?url=http%3A//twitter.com/WebMD"
                                onclick="return sl(this,'nw','soc_tw-f');"></a>

                            </li>
                            <li class="pn">	<a class="pinterest" href="http://www.webmd.com/click?url=http%3A//pinterest.com/webmd/"
                                onclick="return sl(this,'nw','soc_pn-f');"></a>

                            </li>
                        </ul>
                    </div>
                    <div class="ft_logos newSize">	<a onclick="return sl(this,'nw','f-about_22');" href="http://www.webmd.com/click?url=https://www.urac.org/directory/CompanyView.aspx?cid=C8700000F48&amp;aid=1951&amp;Type=Accreditnet"
                        class="logo_urac">
			<span>URAC: Accredited Health Web Site</span>
		</a>

                        <!-- div id="f733a173-6d11-4e17-ba9f-f1454ef8b32f" style="float:left"
                        -->	<a onclick="return sl(this,'nw','f-about_23');" href="http://www.webmd.com/click?url=https://privacy.truste.com/privacy-seal/WebMD,-LLC/validation?rid=7b3bf16d-37b4-42e0-aec7-836ef1d3680d"
                        title="TRUSTe online privacy certification">
				<img style="border: none; float:left; margin: 0px 8px 0px 0px;" src="//privacy-policy.truste.com/privacy-seal/WebMD,-LLC/seal?rid=80c33c7c-da0b-4788-8236-61a318f00f4c" alt="TRUSTe online privacy certification"/>
			</a>

                        <!-- /div -->
                        <!-- a onclick="return sl(this,'nw','f-about_24');" href="http://www.webmd.com/click?url=http://www.hon.ch/HONcode/Conduct.html%3FHONConduct298987"
                        class="logo_honcode" title="This site complies with the HONcode standard
                        for trustworthy health information.">
			<span>HonCode: Health on the Net Foundation</span></a -->
<a onclick="return sl(this,'nw','f-about_24');" href="http://www.webmd.com/click?url=http://www.hon.ch/HONcode/Conduct.html%3FHONConduct298987"
                        title="This site complies with the HONcode standard for trustworthy health information.">
<img alt="HONcode Seal" src="http://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/layout/shared/honcode14.gif" style="border: none; float:left; margin: 0px 0px 0px 5px; width: 43px; height: 60px;"/>
		</a>
	<a onclick="TRUSTeWidget.Tab.link();return sl(this,'f-about_27');"
                        class="logo_AdChoices">AdChoices</a>

                        <script type="text/javascript">
                            $(function(){
                            				var fileNameToLoad = '//preferences.truste.com/webservices/js?type=webmd&domain=webmd';
                            
                            				if(webmd.useragent.ua.browser === 'browserSF') {
                            					fileNameToLoad = '//preferences.truste.com/webservices/js?domain=webmdsafari.com&type=webmdsafari&js=2';
                            				}
                            
                            				webmd.load({js:[fileNameToLoad, '//privacy-policy.truste.com/privacy-seal/WebMD,-LLC/asc?rid=f733a173-6d11-4e17-ba9f-f1454ef8b32f']});			
                            			});
                        </script>
                    </div>
                    <div class="ft_text">
                        <div class="about">	<a rel="nofollow" href="http://www.webmd.com/www/about-webmd-policies/default.htm?ss=ftr"
                            onclick="return sl(this,'','f-about_01');">About WebMD</a>  <a rel="nofollow"
                            href="http://www.webmd.com/www/about-webmd-policies/media/default.htm"
                            onclick="return sl(this,'f-about_09','ftr')">Advertise With Us</a>  <a rel="nofollow"
                            href="http://www.webmd.com/www/about-webmd-policies/about-terms-and-conditions-of-use?ss=ftr"
                            onclick="return sl(this,'','f-about_02');">Terms of Use</a>  <a rel="nofollow"
                            href="http://www.webmd.com/www/about-webmd-policies/about-privacy-policy?ss=ftr"
                            onclick="return sl(this,'','f-about_03');">Privacy Policy</a>  <a rel="nofollow"
                            href="http://www.webmd.com/www/about-webmd-policies/about-our-sponsors?ss=ftr"
                            onclick="return sl(this,'','f-about_04');">Sponsor Policy</a>  <a href="http://www.webmd.com/www/sitemap?ss=ftr"
                            onclick="return sl(this,'','f-about_05');">Site Map</a>  <a rel="nofollow"
                            href="https://careers-webmd.icims.com/" onclick="return sl(this,'','f-about_07')">Careers</a> 
                            <a
                            class="last" rel="nofollow" href="https://customercare.webmd.com/ics/support/default.asp?deptID=18003&amp;task=ticket"
                            onclick="return sl(this,'nw','f-about_08');">Contact Us</a>
                        </div>
                        <div class="links">	<a href="http://reference.medscape.com/" onclick="return sl(this,'f-about_11','ftr')">Medscape Reference</a> 
                            <a
                            href="http://www.emedicinehealth.com/script/main/hp.asp" onclick="return sl(this,'f-about_12','ftr')">eMedicineHealth</a> <a href="http://www.rxlist.com/" onclick="return sl(this,'f-about_13','ftr')">RxList</a> 
                                <a
                                href="http://www.medscape.com/" onclick="return sl(this,'f-about_14','ftr')">Medscape</a> <a href="http://www.medicinenet.com/" onclick="return sl(this,'f-about_15','ftr')">MedicineNet</a> 
                                    <a
                                    href="http://www.webmd.boots.com/" onclick="return sl(this,'f-about_26','ftr')">BootsWebMD</a>
<a class="last" rel="nofollow" href="http://www.wbmd.com/"
                                        onclick="return sl(this,'f-about_10','ftr')">WebMD Corporate</a>

                        </div>
                        <div class="links"> <a rel="nofollow" href="http://www.webmdhealthservices.com/" onclick="return sl(this,'f-about_29','ftr')">WebMD Health Services</a> 
                            <a
                            href="http://www.webmd.com/first-aid/default.htm" onclick="return sl(this,'','f-about_17');">First Aid</a> <a href="http://www.webmd.com/www/magazine/default.htm?ss=ftr"
                                onclick="return sl(this,'','f-about_18');">WebMD Magazine</a>  <a href="http://www.webmd.com/www/phr"
                                onclick="return sl(this,'','f-about_19')">WebMD Health Record</a>  <a href="http://www.webmd.com/www/mobile"
                                onclick="return sl(this,'','f-about_20')">WebMD Mobile</a>  <a class="last"
                                href="https://member.webmd.com/subscribe" onclick="return sl(this,'','f-about_21')">Newsletters</a> 
                        </div>
                        <div class="links">
<a href="http://dictionary.webmd.com/default.htm" onclick="return sl(this,'','f-about_22')">Dictionary</a> 
                            <a
                            class="last" href="http://doctor.webmd.com/home" onclick="return sl(this,'','f-about_23')">Physician Directory</a>
                        </div>
                        <div class="copyright">
                            <p>©2005-2015 WebMD, LLC. All rights reserved.</p>
                            <p>WebMD does not provide medical advice, diagnosis or treatment. <a rel="nofollow"
                                href="http://www.webmd.com/www/policies/additional-info?ss=ftr" onclick="return sl(this,'','f-about_25');">See additional information.</a>

                            </p>
                        </div>
                    </div>
                    <div class="clearing"></div>
                </div>
                <script type="text/javascript">
                    // adding RR test back into preview to troubleshoot
                    	try {
                    		webmd.usability.tests.ssRightRail.writeTest();
                    	} catch(e) {
                    	};
                </script>
                <script language="javascript1.2" type="text/javascript">
                    if (document.URL.substring(0, 5).indexOf('http:') >= 0) {
                    		document.write('&lt;img src=//bi.medscape.com/pi/global/webmd-1x1.gif?' + new Date().getTime() + '" alt="" height="1" width="1" border="0" />')
                    	}
                </script>
                <script language="javascript" type="text/javascript" src="http://img.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS_static/tools/ldcc.js"></script>
                <script type="text/javascript">
                    (function(){
                    	// duckpunching s_before_pv as some assets are using that vs our event driven system. This lets the event system get triggered as well as the other functions	
                    	var _old = window.s_before_pv;	
                    	
                    	window.s_before_pv = function() {
                    		var timestamp = Number(new Date());
                    		if (window.location.protocol === 'http:') {
                    			webmd.load({image: '//b.scorecardresearch.com/b?c1=2&c2=6035829&c3=&c4=&c5=&c6=&c7=' + encodeURIComponent(window.location.href) + '&c9=' + encodeURIComponent(window.document.referrer) + '&c15=&cv=2.0&cj=1&cb='+ timestamp});
                    		}
                    		if (window.location.protocol === 'https:') {
                    			webmd.load({image: '//sb.scorecardresearch.com/b?c1=2&c2=6035829&c3=&c4=&c5=&c6=&c7=' + encodeURIComponent(window.location.href) + '&c9=' + encodeURIComponent(window.document.referrer) + '&c15=&cv=2.0&cj=1&cb='+ timestamp});
                    		}
                    		
                    		_old();
                    	}
                    	if (webmd && webmd.ads2Consumer) {
                    		webmd.ads2Consumer.display();
                    	}
                    })();
                </script>
                <!--<ul><li>$adsystem = DFP</li><li>$pos = 901</li><li>$print = false</li></ul><ul><li>adtype = JavaScript</li><li>iframeheight = 1</li><li>iframewidth = 1</li><li>adserver = as.webmd.com</li></ul><ul><li>affiliate = 20</li><li>apg = 1625</li><li>artid = 091e9c5e810fb2ee</li><li>au1 = </li><li>au2 = </li><li>bc = _age121_l23_age122_j30_t780_</li><li>brand = 0</li><li>cc = 17</li><li>env = </li><li>hcent = 893</li><li>mcent = </li><li>micro = </li><li>pkg = &amp;leaf=</li><li>pos = 901</li><li>pug = __</li><li>scent = </li><li>sec = </li><li>segval = </li><li>site = 2</li><li>tile = 365904714</li><li>tmg = </li><li>transactionID = 442451382</li><li>tug = 2321</li><li>uri = %2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings</li></ul>-->
                <script>
                    var priTopId='1625', secTopId='';
                </script>
                <div id="ads2-pos-901-1x1ad" class="ad_placeholder" style="display:none;"></div>
                <script>
                    webmd.ads2Consumer.defineAd({targets:{art:'091e9c5e810fb2ee',cc:'17',env:'',hcent:'893',leaf:'&amp;leaf=',mcent:'',mic:'',pt:'1625',sec:'',pug:'__',scent:'',tmg:'',tug:'2321',uri:'%2fallergies%2fnews%2f20150220%2fchild-peanut-allergy-findings'},blockCodes:'_age121_l23_age122_j30_t780_',id:'ads2-pos-901-1x1ad',pos:'901',sizes:[1,1]});
                </script>
            </div>
            <div id="ContentPane29"></div>
            <div id="bottomShadow_fmt"></div>
        </div>
        </div>
        </div>
        </div>
        <script type="text/javascript">
            var s_account="webmdcom"
             ,s_server_type="1b"
             ,s_server="WFAWS15L-CON-08"
             ,s_object_type="wbmd_cons_article"
             ,s_page_number="1"
             ,s_topic_dir="false"
             ,s_site_class="ooc"
             ,s_site="core"
             ,s_sponsored_uri="allergies/news/20150220/child-peanut-allergy-findings"
             ,s_pagename="www.webmd.com/allergies/news/20150220/child-peanut-allergy-findings"
             ,s_channel=""
             ,s_topic="1625"
             ,s_business_reference="News"
             ,s_publication_source="WebMD Health News"
             ,s_intended_demographics="__"
             ,s_stage_condition=""
             ,s_asset_id="091e9c5e810fb2ee"
             ,s_unique_id="091e9c5e810fb2ee"
             ,s_company="webmd"
             ,s_mrt=""
             ,s_assetname=""
             ,s_refpath=""
             ,s_sponsor_brand="Dey_EpiPen"
             ,s_sponsor_program="Dey_EpiPen_Patient Select Allergies"
             ,s_tug="2321"
             ,s_package_type="topic targeted - sp"
             ,s_package_name=""
             ,s_channel_super_portal=""
             ,s_channel_health="Allergies"
             ,s_channel_mini=""
             ,s_channel_micro=""
             ,s_channel_topic_miniguide_guide=""
             ,s_searchterm="";
        </script>
        <script language="javascript1.2" type="text/javascript" src="http://img.webmd.com/bi_common/bi_consumer.js?d=3/18/2015"></script>
    </body>

</html>