forked from grangier/python-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_issue28.html
More file actions
1456 lines (1124 loc) · 57.4 KB
/
Copy pathtest_issue28.html
File metadata and controls
1456 lines (1124 loc) · 57.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>World's hottest chilli contest leaves two in hospital - Telegraph</title>
<meta name="description" content="A 'world's hottest chilli' competition at a curry restaurant left two people
in hospital." />
<meta name="keywords" content="Curry-competition, Food and Drink News,Food and Drink" />
<meta name="tmgads.zone" content="foodanddrink.foodanddrinknews" />
<meta name="tmgads.channel" content="food_and_drink" />
<meta name="tmgads.section" content="food_and_drink-food_and_drink_news" />
<meta name="tmgads.articleid" content="8808120" />
<meta name="tmgads.pagetype" content="story" />
<meta name="tmgads.level" content="3" />
<meta name="tmgads.otherdata" content="" />
<meta name="section-id" content="4348" />
<meta name="last-modified" content="2011-10-05" />
<meta name="article-id" content="8808120" />
<meta name="title" content="World's hottest chilli contest leaves two in hospital" />
<meta name="GSAMLC" content="foodanddrink/foodanddrinknews" />
<meta name="GSAChannel" content="food_and_drink" />
<meta name="GSAChannelName" content="Food and Drink" />
<meta name="GSACategory" content="foodanddrinknews" />
<meta name="GSASectionUniqueName" content="food_and_drink-food_and_drink_news" />
<meta name="GSAArticleType" content="Story" />
<meta name="DC.date.issued" content="2011-10-05" />
<meta name="ROBOTS" content="NOARCHIVE,NOODP" />
<meta property="fb:app_id" content="120118784736295" />
<meta property="fb:admins" content="61104010,686953094,717971360,677796398,531239902" />
<meta property="fb:page_id" content="143666524748" />
<meta property="og:description" content="A 'world's hottest chilli' competition at a curry restaurant left two people
in hospital." />
<meta property="og:site_name" content="Telegraph.co.uk" />
<meta property="og:title" content="World's hottest chilli contest leaves two in hospital - Telegraph" />
<meta property="og:url" content="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html" />
<meta property="og:image" content="http://i.telegraph.co.uk/multimedia/archive/02018/Kismot-Killer_2018476g.jpg" />
<meta property="og:type" content="article" />
<link rel="canonical" href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html"/>
<link rel="alternate" type="application/rss+xml" title="RSS Feed for Food and Drink News articles - Telegraph.co.uk" href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/rss" />
<script type="text/javascript" src="/template/ver1-0/js/jquery-1.4.2.min.js"></script>
<script language="Javascript" type="text/javascript" src="/template/ver1-0/js/jquery.cookie.js"></script>
<meta name="DCSext.MLC" content="/foodanddrink/foodanddrinknews/article" />
<meta name="DCSext.Category" content="foodanddrinknews" />
<meta name="WT.cg_s" content="foodanddrinknews" />
<meta name="DCSext.Channel" content="foodanddrink" />
<meta name="WT.cg_n" content="foodanddrink" />
<meta name="DCSext.Content_Type" content="Story" />
<meta name="DCSext.Level" content="3" />
<meta name="DCSext.articleFirstPublished" content="2011-10-05" />
<meta name="DCSext.articleId" content="8808120" />
<script src="/template/ver1-0/js/webtrends/WTDcsVid.js" type="text/javascript"></script>
<script src="/template/ver1-0/js/webtrends/LIVE/WTID.js" type="text/javascript"></script>
<script src="/template/ver1-0/js/webtrends/Webtrends.js" type="text/javascript"></script><script type="text/javascript" src="//maxymiser.hs.llnwd.net/o36/telegraph/js/mmcore.js"></script>
<script type="text/javascript" src="/template/ver1-0/js/GAInit.js"></script>
<script type="text/javascript" language="JavaScript">
// name: RoS AdprobeTag
// created at: 31.05.2011 - 15:21
// The placement ids to request, max 10 per request, comma delimited, no spaces:
var wlCus = "10085,10086";
var wlOrd = new Date().getTime();
try {
document.write('<scr' + 'ipt type="text/javascript" language="JavaScript" src="http://req.connect.wunderloop.net/AP/1585/5904/10085/js?cus=' + wlCus + '&ord=' + wlOrd + '"></sc' + 'ript>');
} catch(err) { }
</script>
<script language="Javascript" type="text/javascript" src="/template/ver1-0/js/dfp.js"></script>
<script type="text/javascript" src="/template/ver1-0/js/googleAnalytics.js"></script>
<link rel="stylesheet" type="text/css" href="/template/ver1-0/css/screen.css" media="screen" />
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="/template/ver1-0/css/ie6.css" media="screen" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="/template/ver1-0/templates/fragments/common/tmglBrandCSS.jsp" media="screen" />
<link type="text/css" rel="stylesheet" href="http://inskin.vo.llnwd.net/o21/ikit/default/css/default.css" />
<script type="text/javascript" src="http://inskin.vo.llnwd.net/o21/ikit/default/js/inskin_load.js"></script>
<script language="Javascript" type="text/javascript" src="/template/ver1-0/js/ajax.js"></script>
<script language="Javascript" type="text/javascript" src="/template/ver1-0/js/commWidget.js"></script>
<!-- Begin KRUX Digital Control Tag for The Telegraph -->
<script type="text/javascript">var KRUXSetup = {
pubid:"d6498d46-90bb-46f8-8d67-1a8770046960",
site:"Telegraph",
section: 'Food and Drink',
subSection: 'Food and Drink News'
};
</script>
<script type="text/javascript" src="http://cdn.krxd.net/krux.js"></script>
<!-- End KRUX Digital Control Tag for The Telegraph -->
</head>
<body>
<!--[if lte IE 6]>
<div id="ieLteSix">
<div class="ieLteSixBanner">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td class="ieLteSixLeft">
<p class="ieFirstP">We no longer check to see whether Telegraph.co.uk displays properly in Internet Explorer version 6 or earlier.</p>
<p class="ieSecondtP">To see our content at its best we recommend <a href="/browser-support/">upgrading if you wish to continue using IE or using another browser such as Firefox, Safari or Google Chrome.</a></p>
</td>
<td valign="top" class="ieLteSixRight">
<a href="#" id="ieX"><img width="20" height="20" border="0" alt="Hide this banner" src="/template/ver1-0/i/ieX.gif"></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script language="Javascript" type="text/javascript" src="/template/ver1-0/js/ieSix.js"></script>
<![endif]-->
<noscript>
<img alt="DCSIMG" id="DCSIMG" width="1" height="1" src="http://webtrends.telegraph.co.uk/dcsshgbi400000gscd62rrg43_4o2o/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=8.6.2"/>
</noscript><!-- googleoff: all -->
<a name="top"></a>
<div class="hidden">
<p>Accessibility links</p>
<ul>
<li><a href="#article">Skip to article</a></li>
<li><a href="#mainsections">Skip to navigation</a></li>
</ul>
</div><div id="tmglSite">
<div class="printLogo"><img src="/template/ver1-0/i/telegraph_print_190.gif"/></div>
<div id="tmglHeader" class="">
<div id="tmglBannerAd">
<div class="access">Advertisement</div>
<div class="adbanner" align="center">
<div id="banner" class="InSkinHide">
<script type="text/javascript">
document.write(tmgAdsBuildAdTag("ban", "728x90,468x60", "adj", "", 2));
</script>
</div>
</div>
</div>
<script language="Javascript" type="text/javascript" src="/template/ver1-0/js/topbar.js"></script>
<input type="hidden" id="topbar_login_base_url" name="topbar_login_base_url" value="https://auth.telegraph.co.uk/sam-ui/">
<div id="tmglTopBar">
<div id="tmglTopLeft">
<div id="tmglLasUpdatedDateFeed">
<p>
Thursday 06 October 2011</p>
</div>
</div>
<div id="tmglTopRight">
<p id="regDetails"><script>checkLoginStatus();</script> | <a href="http://subscriber.telegraph.co.uk/loyalty/">Subscribe</a></p>
</div>
<div class="cl"></div>
</div>
<div id="tmglBrandLarge">
<a href="/">
<div id="brand">Telegraph.co.uk</div></a>
<div id="topBarRightContainer">
<div id="searchBar">
<div id="searchBlock">
<form name="tg_search" id="tg_search" method="get" action="/search/">
<input type="text" class="searchBox google" name="queryText" value="" size="19" tabindex="1" />
<input type="submit" class="formSubmit" tabindex="2" id="go" name="Search" value="" alt="Search" />
</form>
<div class="cl"></div>
</div>
</div>
</div>
<div class="cl"></div>
</div>
<div class="cl"></div>
</div>
<!-- googleon: all -->
<!-- googleoff: all -->
<div id="tmglMenu">
<div id="tmglPriExWrap">
<div id="tmglPrimaryNav" class="nonActiveNav">
<div class="access"><a name="mainsections"></a></div>
<ul class="mainNav">
<li class="first styleNine"><a href="http://www.telegraph.co.uk/">Home</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/news/">News</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/sport/">Sport</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/finance/">Finance</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/comment/">Comment</a></li>
<li class="styleNine"><a href="http://blogs.telegraph.co.uk">Blogs</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/culture/">Culture</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/travel/">Travel</a></li>
<li class="selected styleNine" id="menuItemstyleNine"><a href="http://www.telegraph.co.uk/lifestyle/">Lifestyle</a></li>
<li class="styleNine"><a href="http://fashion.telegraph.co.uk">Fashion</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/technology/">Tech</a></li>
</ul></div>
<div id="tmglExtraNav">
<ul class="extraNav">
<li class="first">
<a href="http://dating.telegraph.co.uk/s/a/4167">Dating</a>
</li>
<li>
<a href="http://www.telegraph.co.uk/promotions">Offers</a>
</li>
<li>
<a href="http://jobs.telegraph.co.uk">Jobs</a>
</li>
</ul>
<div class="cl"></div>
</div>
<div class="cl"></div>
</div>
<div id="tmglSecondNav" class="activeNav styleNine">
<ul class="mainNav">
<li class="first styleNine"><a href="http://www.telegraph.co.uk/motoring/">Motoring</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/health/">Health</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/property/">Property</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/gardening/">Gardening</a></li>
<li class="selected styleNine"><a href="http://www.telegraph.co.uk/foodanddrink/">Food and Drink</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/family/">Family</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/earth/outdoors/">Outdoors</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/relationships/">Relationships</a></li>
<li class="styleNine"><a href="http://www.telegraph.co.uk/expat/">Expat</a></li>
<li class="styleNine"><a href="http://puzzles.telegraph.co.uk">Puzzles</a></li>
<li class="styleNine"><a href="http://announcements.telegraph.co.uk">Announcements</a></li></ul>
<div class="cl"></div>
</div>
<div id="tmglThirdNav">
<ul class="mainNav">
<li class="first "><a href="http://www.telegraph.co.uk/foodanddrink/recipes/">Recipes</a></li>
<li class=""><a href="http://www.telegraph.co.uk/foodanddrink/wine/">Wine</a></li>
<li class=""><a href="http://wine.telegraph.co.uk/?utm_source=tmg&utm_medium=puff&utm_campaign=wineshop">Wine Shop</a></li>
<li class=""><a href="http://www.telegraph.co.uk/foodanddrink/healthyeating/">Healthy Eating</a></li>
<li class=""><a href="http://www.telegraph.co.uk/foodanddrink/restaurants/">Restaurants</a></li>
<li class=""><a href="http://www.telegraph.co.uk/foodanddrink/pubs/">Pubs</a></li>
<li class=""><a href="http://www.telegraph.co.uk/foodanddrink/foodanddrinkpicturegalleries/">Food and Drink Picture Galleries</a></li>
</ul>
<div class="cl"></div>
</div>
<div id="tmglCrumbtrail" >
<p class="styleNine"><a href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/">Food and Drink News</a></p>
<div class="cl"></div>
</div></div>
<!-- googleon: all -->
<div id="tmglBody" >
<div class="access"><a name="article"></a></div>
<div class="twoThirdsThird2 gutterUnder">
<div class="twoThirds gutter" >
<div class="storyHead">
<h1>World's hottest chilli contest leaves two in hospital</h1>
<h2>
A 'world's hottest chilli' competition at a curry restaurant left two people
in hospital.
</h2>
</div>
<div class="oneHalf gutter">
<div class="story">
<div id="storyEmbSlide">
<div class="slideshow ssMain">
<div class="nextPrevLayer">
<div class="ssImg">
<img src="http://i.telegraph.co.uk/multimedia/archive/02018/Kismot-Killer_2018476c.jpg" width="460" height="287" alt="World's hottest chilli contest leaves two in hospital"/>
<div class="artImageExtras" >
<div class="ingCaptionCredit">
<span class="caption">Competitors taking part in the chilli eating competition at Kismot Restaurant on St Leonards Place, Edinburgh</span> <span class="credit">Photo: DEADLINE</span></div>
</div>
</div>
</div>
</div>
</div>
<div class="cl"> </div>
<div class="byline">
<div >
</div>
<p class="publishedDate" >9:39AM BST 05 Oct 2011</p>
<div class="cl"> </div>
</div>
<div id="mainBodyArea" >
<div class="firstPar"><p>
Emergency services were called to Kismot Restaurant's curry-eating challenge,
on St Leonards Place, Edinburgh, after competitors started writhing on the
floor in agony, vomiting and fainting during the contest.
</p></div><div class="secondPar">
<p>
One participant, Curie Kim was so ill after sampling the "Kismot Killer"
that she had to be taken by ambulance to the Edinburgh Royal Infirmary twice
in a matter of hours.
</p></div><div class="thirdPar">
<p>
Today, the Scottish Ambulance Service said it wanted the restaurant to review
the way the event was managed.
</p></div><div class="fourthPar">
<p>
Paramedics attended the event on Saturday - the busiest day of the week for
the ambulance service - costing the service several hundred pounds.
</p></div><div class="fifthPar">
<p>
Participants were required to sign a legal disclaimer prior to taking part in
the competition, and two members of the British Red Cross were on hand, but
they could not cope with the nature of the injuries sustained.
</p></div><!-- BEFORE ACI -->
<div id="tmg-related-links" class="related_links_inline">
<div class="headerOne styleNine"><h2><span>Related Articles</span></h2></div>
<ul>
<li class="bullet">
<p>
<a href="/news/politics/council-spending/8808084/Gypsy-flag-to-fly-above-town-promenade.html">Gypsy flag to fly above town</a>
</p>
<span class="relContDate">05 Oct 2011</span>
</li>
<li class="video">
<p>
<a href="/news/worldnews/northamerica/usa/8787511/Massive-spinning-column-of-water-forms-over-Lake-Michigan.html">Water column forms over Lake Michigan</a>
</p>
<span class="relContDate">25 Sep 2011</span>
</li>
<li class="bullet">
<p>
<a href="/news/newstopics/howaboutthat/8778514/Worlds-smallest-aquarium-holds-just-two-teaspoons-of-water.html">World's smallest aquarium holds just two teaspoons of water</a>
</p>
<span class="relContDate">21 Sep 2011</span>
</li>
<li class="video">
<p>
<a href="/news/newstopics/howaboutthat/8778203/Father-and-son-rescued-after-being-left-dangling-from-broken-rollercoaster.html">Two rescued from rollercoaster</a>
</p>
<span class="relContDate">21 Sep 2011</span>
</li>
</ul>
</div>
<div class="body">
<p>
Curry house owner Abdul Ali admitted that he would have to "tone down"
the contest, but said the challenge had raised hundreds of pounds for
charity CHAS.
</p>
<p>
He added that half of the 20 people who took part in the challenge had dropped
out after witnessing the first 10 diners vomiting, collapsing, sweating and
panting.
</p>
<p>
Previously the restaurant's Kismot Killer dish has caused diners to suffer
nose bleeds and one elderly man had to go to hospital.
</p>
<p>
Curie, 21, a Korean exchange student at Edinburgh University, came second in
the competition, but she admitted the accolade "came with a price". </p>
<p>
She said: "I've always enjoyed spicy foods and thought this was for a
good cause. But it came with a price, I had to be taken to the ERI twice.
</p>
<p>
"I first went to hospital at around 4pm and the second time was at 9pm.
It got really bad. I have never endured such pain in my life."
</p>
<p>
Mr Ali said he felt the competition had gone well, but that he had
overestimated how much heat the competitors could take.
</p>
<p>
Beverly Jones, from Newington, was crowned curry queen after she managed to
finish nine spoonfuls of the chilli-filled dish.
</p>
<p>
Mike Lavin, from Polwarth, came fifth, but he, too, had to be taken to the
ERI.
</p>
<p>
Local councillor Gordon Mackenzie branded the event a "shambles" and
said: "The owners owe a debt to the ambulance service, and I hope
they'll find some way of making it up to them."
</p>
<p>
A spokesman for the ambulance service said: "We would urge the organisers
to review the way in which this event is managed in future in order to avoid
another situation where emergency ambulances are required to treat their
customers."
</p>
</div><div class="cl"></div>
</div></div>
</div>
<div class="oneSixth">
<!-- googleoff: all -->
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
status : true,
cookie : true,
xfbml : true,
channelUrl : 'http://www.telegraph.co.uk/template/utils/fb_xd_channel.html'
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<style>
.at15t_email {display:none !important;}
ul li.email span.at300bs {display:none !important;}
</style>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
<script type="text/javascript" src="/template/ver1-0/js/shareTools.js"></script>
<script type="text/javacript">
// Preload images
var closeOnHover = new Image();
closeOnHover.src = "/template/ver1-0/i/addthis_menu_close_active.gif";
var menuTop = new Image();
menuTop.src = "/template/ver1-0/i/addthis_menu_top.png";
</script>
<script src="http://platform.linkedin.com/in.js" type="text/javascript"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
{parsetags: 'explicit'}
</script>
<div class="shareFunctions loading" id="shareSide"
style="height:162px"
>
<div class="storyFunc addThisStoryFunc hide">
<div class="addthis_hover_menu_container">
<div class="addthis_hover_menu">
<div class="content">
<div class="top"><a href="#" class="close_button"><span>X</span></a> Share & bookmark</div>
<div class="column1">
<a class="addthis_button_delicious">Delicious</a>
<a class="addthis_button_facebook">Facebook</a>
<a class="addthis_button_google">Google</a>
<a class="addthis_button_live">Messenger</a>
<a class="addthis_button_reddit">Reddit</a>
<a class="addthis_button_twitter">Twitter</a>
</div>
<div class="column2">
<a class="addthis_button_digg">Digg</a>
<a class="addthis_button_fark">Fark</a>
<a class="addthis_button_linkedin">LinkedIn</a>
<a class="addthis_button_googlebuzz">Google Buzz</a>
<a class="addthis_button_stumbleupon">StumbleUpon</a>
<a class="addthis_button_buzz">Y! Buzz</a>
</div>
<div class="whatIsThis">
<a href="http://www.telegraph.co.uk/technology/news/4590190/Share-this-article-What-are-these.html" rel="nofollow">What are these?</a>
</div>
</div>
</div>
</div><ul class="shareThis">
<li class="shareThisShare">
<span class="shareLabel">Share:</span>
<a href="#" class="addthis_custom_button"><span>Share</span></a>
<span class="miniBar"> </span>
<span class="email">
<a class="addthis_button_email" href="mailto:?subject=A Telegraph reader thought you would be interested in this article&body=Depending on your email program, you may be able to click on the link in the email. Alternatively, you may have to open a web browser, such as Firefox or Internet Explorer, and copy the link over into the address bar. %0A%0Ahttp://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html %0A%0AFor the best content online, visit www.telegraph.co.uk"> </a>
</span>
<span class="miniBar"> </span>
<span class="print"><a href="javascript:print()"> </a></span>
</li>
</ul>
<div class="cl"></div>
</div>
<div class="storyFunc hide">
<fb:like href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html" layout="button_count" action="recommend" font="arial"></fb:like>
</div>
<div class="storyFunc hide ">
<div class="retweet">
<a href="http://twitter.com/share?via=Telegraph" class="twitter-share-button">Tweet</a>
</div>
<div class="cl"></div>
</div>
<div class="storyFunc hide linkedInButton ">
<script type="IN/Share" data-url="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html" data-counter="right" data-showZero="true"></script>
</div>
<div class="storyFunc hide nobord googlePlusOneButton">
<g:plusone size="medium" href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html"></g:plusone>
</div>
<div id="diggPermaUrl" class="hidden">http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html</div>
<div id="twtrUsr" class="hidden">Telegraph</div>
</div>
<div class="storyfct">
<div id="storyMoreOnFucntion">
<div class="secLinks">
<div class="section">
<div class="name">
<h2><a href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/">Food and Drink News</a></h2>
</div>
<div class="cl"></div>
</div>
<ul>
<li class="first">
<h3><a href="http://www.telegraph.co.uk/news/">News »</a></h3>
</li>
<li>
<h3><a href="http://www.telegraph.co.uk/news/newstopics/howaboutthat/">How about that? »</a></h3>
</li>
<li>
<h3><a href="http://www.telegraph.co.uk/news/uknews/scotland/">Scotland »</a></h3>
</li>
<li>
<h3><a href="http://www.telegraph.co.uk/news/uknews/">UK News »</a></h3>
</li>
<li>
<h3><a href="http://www.telegraph.co.uk/health/healthnews/">Health News »</a></h3>
</li>
</ul>
<div class="cl"></div>
</div>
</div>
</div>
<div class="related_links">
</div>
<div class="summaryMedium secPuffs">
<div class="headerOne styleNine"><p>In Food and Drink News</p></div>
<div class="summary ">
<div class="summarySmall">
<div class="piccentre containerdiv ">
<a href="/foodanddrink/foodanddrinkpicturegalleries/8808407/Disparity-by-Christopher-Boffoli-miniature-scenes-created-using-food-and-toy-figures.html"><img src="http://i.telegraph.co.uk/multimedia/archive/02018/foodies-620_2018607g.jpg" alt="Disparity by Christopher Boffoli: everyday scenes created using food and toy figures" border="0" width="140" height="87" />
<span class="cornerimagephotocentre"> </span></a>
</div>
<h3>
<a href="/foodanddrink/foodanddrinkpicturegalleries/8808407/Disparity-by-Christopher-Boffoli-miniature-scenes-created-using-food-and-toy-figures.html">Miniature food scenes</a>
</h3>
</div>
</div>
<div class="summary ">
<div class="summarySmall">
<div class="piccentre containerdiv ">
<a href="/travel/picturegalleries/8774045/Oktoberfest-2011-the-worlds-biggest-beer-festival-opens-in-Munich-Germany.html"><img src="http://i.telegraph.co.uk/multimedia/archive/02002/drinkers-620_2002553g.jpg" alt="Visitors hold their beer mugs in a festival tent at the start of the Oktoberfest beer festival " border="0" width="140" height="87" />
<span class="cornerimagephotocentre"> </span></a>
</div>
<h3>
<a href="/travel/picturegalleries/8774045/Oktoberfest-2011-the-worlds-biggest-beer-festival-opens-in-Munich-Germany.html">Oktoberfest 2011</a>
</h3>
</div>
</div>
<div class="summary ">
<div class="summarySmall">
<div class="piccentre containerdiv ">
<a href="/news/picturegalleries/uknews/8784306/Cardiff-after-dark-Maciej-Dakowicz-photographs-the-nightlife-of-the-Welsh-capital.html"><img src="http://i.telegraph.co.uk/multimedia/archive/02007/cardiff-620_2007212g.jpg" alt="Cardiff city centre at night" border="0" width="140" height="87" />
<span class="cornerimagephotocentre"> </span></a>
</div>
<h3>
<a href="/news/picturegalleries/uknews/8784306/Cardiff-after-dark-Maciej-Dakowicz-photographs-the-nightlife-of-the-Welsh-capital.html">Cardiff after dark</a>
</h3>
</div>
</div>
<div class="summary ">
<div class="summarySmall">
<div class="piccentre containerdiv ">
<a href="/news/picturegalleries/worldnews/8733187/40000-people-take-part-in-worlds-biggest-tomato-fight-The-Tomatina-in-Bunol-Spain.html"><img src="http://i.telegraph.co.uk/multimedia/archive/01984/tomatina-388-1_1984834g.jpg" alt="Bunol's town hall estimated more than 40,000 people, some from as far away as Japan and Australia, took up arms Wednesday and pelted each other with 120 tons of ripe tomatoes in the yearly food fight known as the 'Tomatina' now in its 66th year" border="0" width="140" height="87" />
<span class="cornerimagephotocentre"> </span></a>
</div>
<h3>
<a href="/news/picturegalleries/worldnews/8733187/40000-people-take-part-in-worlds-biggest-tomato-fight-The-Tomatina-in-Bunol-Spain.html">The Tomatina</a>
</h3>
</div>
</div>
<div class="summary ">
<div class="summarySmall">
<div class="piccentre containerdiv ">
<a href="http://www.telegraph.co.uk/gardening/chelseaflowershow/"><img src="http://i.telegraph.co.uk/multimedia/archive/01895/DG-3_1895289g.jpg" alt="" border="0" width="140" height="87" />
<span class="cornerimagecentre"> </span></a>
</div>
<h3>
<a href="http://www.telegraph.co.uk/gardening/chelseaflowershow/">Chelsea Flower Show 2011</a>
</h3>
</div>
</div>
</div>
<!-- googleon: all -->
</div>
<div class="cl"></div>
<!-- googleoff: index -->
<!-- googleoff: all -->
<!-- googleon: all -->
<div class="storyFt">
<div class="storyFunc nobord hide" id="shareBottom">
<div class="addthis_hover_menu_container">
<div class="addthis_hover_menu">
<div class="content">
<div class="top"><a href="#" class="close_button"><span>X</span></a> Share & bookmark</div>
<div class="column1">
<a class="addthis_button_delicious">Delicious</a>
<a class="addthis_button_facebook">Facebook</a>
<a class="addthis_button_google">Google</a>
<a class="addthis_button_live">Messenger</a>
<a class="addthis_button_reddit">Reddit</a>
<a class="addthis_button_twitter">Twitter</a>
</div>
<div class="column2">
<a class="addthis_button_digg">Digg</a>
<a class="addthis_button_fark">Fark</a>
<a class="addthis_button_linkedin">LinkedIn</a>
<a class="addthis_button_googlebuzz">Google Buzz</a>
<a class="addthis_button_stumbleupon">StumbleUpon</a>
<a class="addthis_button_buzz">Y! Buzz</a>
</div>
<div class="whatIsThis">
<a href="http://www.telegraph.co.uk/technology/news/4590190/Share-this-article-What-are-these.html" rel="nofollow">What are these?</a>
</div>
</div>
</div>
</div><ul class="shareThis shareBottom">
<span class="shareLabel">Share:</span>
<li class="shareThisShare">
<a href="#" class="addthis_custom_button"> </a>
</li>
<li class="email">
<a class="addthis_button_email" href="mailto:?subject=A Telegraph reader thought you would be interested in this article&body=Depending on your email program, you may be able to click on the link in the email. Alternatively, you may have to open a web browser, such as Firefox or Internet Explorer, and copy the link over into the address bar. %0A%0Ahttp://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html %0A%0AFor the best content online, visit www.telegraph.co.uk"> </a>
</li>
<li class="print"><a href="javascript:print()"> </a></li>
<li class="retweet">
<a href="http://twitter.com/share?via=Telegraph" class="twitter-share-button">Tweet</a>
</li>
<li class="facebook">
<fb:like href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html" show_faces="false" layout="button_count" action="recommend" width="120" font="arial"></fb:like>
</li>
<li class="linkedInButton">
<script type="IN/Share" data-url="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html" data-counter="right" data-showZero="true"></script>
</li>
<li class="googlePlusOneButton">
<g:plusone size="medium" href="http://www.telegraph.co.uk/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html"></g:plusone>
<script type="text/javascript">gapi.plusone.go('googlePlusOneButton');</script>
</li>
</ul>
<div class="cl"></div>
</div>
<div class="summaryMedium">
</div>
<!-- googleoff: all -->
<div class="googleads">
<div class="access">Advertisement</div>
<script type="text/javascript">
<!--
google_ad_client = 'ca-telegraph_uk_300x250';
google_ad_channel = 'food_and_drink';
google_max_num_ads = '3';
google_ad_output="js";
google_ad_type="text";
google_language="en";
google_encoding="utf8";
google_safe="high";
google_hints="foodanddrinknews";
/* Google Ad Functions */
function google_ad_request_done(google_ads) {
var googleAdHeadText="Ads by Google";
var googleAdHeadLink="https://www.google.com/adsense/support/bin/request.py?contact=abg_afc&gl=US&hideleadgen=1";
var google_max_num_ads = '3';
if(google_ads.length==0){
return;
}
var s="<div id='googleHead'><div class='headerOne styleTen'><p><span><a target=\"_blank\" title=\"About Google Ads\" href=\""+googleAdHeadLink+"\">";
s+=googleAdHeadText+"</a></span></p></div></div>";
s+="<div id='google-ads-container-inner'><div class='googleAdText'><ul class='googleAdText'>";
if (google_ads[0].type=="text") {
for(i=0;i<google_ads.length;i++){
if (i == (google_max_num_ads - 1)){
s+="<li class=\"last\">";
}
else if (i == 0) {
s+="<li class=\"first\">";
}
else {
s+="<li>";
}
s+='<h4><a target="_TOP" href="'+google_ads[i].url+'">'+google_ads[i].line1+"</a></h4>";
s+="<p>"+google_ads[i].line2+" "+google_ads[i].line3+"</p>";
s+='<p><a target="_TOP" href="'+google_ads[i].url+'">'+google_ads[i].visible_url+"</a></p>";
s+="</li>"
}
}
s+="</ul><div class=\"cl\"><!-- --></div><span class=\"hl-brackets1\"><!-- --></span>";
s+="<span class=\"hl-brackets2\"><!-- --></span><span class=\"hl-brackets3\"><!-- --></span>";
s+="<span class=\"hl-brackets4\"><!-- --></span></div></div>";
document.getElementById("google-ads-container").innerHTML=s;
// Slightly hacky, but if we're in a section then the container div needs a different class
if (google_max_num_ads == 4) {
document.getElementById("google-ads-container").parentNode.className = "googleadssection";
}
}
// -->
</script>
<div id="google-ads-container"></div>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<noscript>
<img height="1" width="1" border="0" src="http://pagead2.googlesyndication.com/pagead/imp.gif?client=ca-telegraph_uk_420x200&event=noscript" alt=""/>
</noscript>
</div>
<!-- googleon: all -->
</div>
<!-- googleon: index -->
<!-- googleoff: all -->
<div class="twoThirds">
<!--
comments=disqus
disqusComments=active
userCommentsState=inactive
showComments=false
-->
</div>
<div class="cl"></div>
</div>
<div class="oneThird">
<div class="articleSponsor">
<div class="puff">
<!-- 7265162 -->
<a href="http://wine.telegraph.co.uk/?utm_source=tmg&utm_medium=section&utm_campaign=wineshop" ><img src="http://i.telegraph.co.uk/multimedia/archive/01751/wineshop_v2_1751935a.jpg" width="300" height="30" border="0" alt="wineshop_v2"/></a>
</div>
</div>
<div class="admpu gutterUnder">
<div class="access">Advertisement</div>
<div id="mpu" class="InSkinHide">
<script type="text/javascript">
document.write(tmgAdsBuildAdTag("mpu", "300x250", "adj", "", 2));
</script>
</div>
</div>
<div class="summaryMedium gutterUnder">
<div class="headerOne styleNine">
<!-- 8811138 -->
<p>
<span>sponsored features</span>
</p></div>
<div class="summary">
<!-- 8811348 -->
<script type="text/javascript">var image1=new Image();image1.src='http://i.telegraph.co.uk/multimedia/archive/02018/policygo_lifeinsur_2018293a.jpg';var image2=new Image();image2.src='http://ads.adiclicks.com/rd/b.php?bid=3160&sid=5144&pub=405678';var image3=new Image();image3.src='http://ads.adiclicks.com/rd/b.php?bid=3085&sid=5145&pub=405678';var image4=new Image();image4.src='http://i.telegraph.co.uk/multimedia/archive/02019/zulily_2019868a.jpg';var image5=new Image();image5.src='http://ads.adiclicks.com/rd/b.php?bid=3336&sid=5048&pub=405678';</script><a href="javascript:slidelink()"><img src="firstcar.gif" name="slide" border="0" width="300" height="250"/></a><script type="text/javascript">var step=1;var whichimage=1;function slideit() { if (!document.images) { return } document.images.slide.src=eval('image'+step+'.src'); whichimage=step; switch(step) { case 1: step++; break; case 2: step++; break; case 3: step++; break; case 4: step++; break; default: step=1; } setTimeout('slideit()',5000);}slideit();function slidelink(){ if (whichimage==1) {window.location='http://affiliate.adiclicks.com/rd/r.php?sid=3448&pub=405678&c1=&c2=&c3='} else if (whichimage==2){window.location='http://affiliate.adiclicks.com/rd/r.php?sid=5144&pub=405678&bid=3160&c1=&c2=&c3='} else if (whichimage==3) {window.location='http://affiliate.adiclicks.com/rd/r.php?sid=5145&pub=405678&bid=3085&c1=&c2=&c3='} else if (whichimage==4) {window.location='http://affiliate.adiclicks.com/rd/r.php?sid=4867&pub=405678&c1=&c2=&c3=} else if (whichimage==5){window.location='http://affiliate.adiclicks.com/rd/r.php?sid=5048&pub=405678&bid=3336&c1=&c2=&c3='}}</script></div>
</div>
<div class="access">Advertisement</div>
<div id="yell">
<div class="adyell InSkinHide">
<script type="text/javascript">
document.write(tmgAdsBuildAdTag("yell", "300x150", "adj", "", 2));
</script>
</div>
</div>
<div class="summaryMedium gutterUnder">
<div class="headerOne styleNine">
<!-- 8710859 -->
<p>
<span>Best deals from travelzoo</span>
</p></div>
<div class="summary">
<!-- 8759857 -->
<p><preform><iframe width="300" height="250" marginwidth="0" scrolling="no" src="http://oascentral.travelzoo.com/RealMedia/ads/adstream_sx.ads/TelegraphHealth/home300/@Bottom?O=&D=&G=" frameborder="0" marginheight="0"></iframe>
</preform></p></div>
</div>
<div class="summaryMedium gutterUnder">
<div class="mostPopular"><div id="mostPopular">
<div class="headerOne styleNine">
<p>Food and Drink Most Viewed</p>
</div>
<div id="mostpop">
<div class="tabs">
<ul>
<li id="TODAY" class="first current" onclick="return false">
<a>
<span>TODAY</span>
</a>
</li>
<li id="THIS_WEEK" onclick="return false">
<a>
<span>PAST WEEK</span>
</a>
</li>
<li id="THIS_MONTH" onclick="return false" class="last">
<a>
<span>PAST MONTH</span>
</a>
</li>
</ul>
</div>
<div class="cl"></div>
<div class="lists">
<div id="div-TODAY" class="view-content" style="display: block;">
<ol>
<li><a href="/foodanddrink/foodanddrinknews/8808120/Worlds-hottest-chilli-contest-leaves-two-in-hospital.html">World's hottest chilli contest leaves two in hospital</a></li>
<li><a href="/foodanddrink/foodanddrinknews/8811018/Gastropub-becomes-first-in-Britain-to-be-awarded-two-Michelin-stars.html">Gastropub becomes first in Britain to be awarded two Michelin stars</a></li>
<li><a href="/foodanddrink/8806138/Secret-of-cooking-the-perfect-boiled-egg-cracked.html">Secret of cooking the perfect boiled egg cracked</a></li>
<li><a href="/foodanddrink/8806553/The-French-have-some-sauce-to-ban-tomato-ketchup.html">The French have some sauce to ban tomato ketchup</a></li>