-
Notifications
You must be signed in to change notification settings - Fork 2
/
617.html
1390 lines (1361 loc) · 73.8 KB
/
617.html
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.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>J! Archive - Show #617, aired 1987-04-21</title>
<link type="text/css" rel="styleSheet" href="http://www.j-archive.com/styles.css" />
<link rel="shortcut icon" href="http://www.j-archive.com/favicon.ico" /><meta name="keywords" content="Jeopardy Archive Richard Cordray Susan Wilcox Larry Dundas Final clue response question answer Daily Double" /><meta name="description" content="An archive of clues and players for Jeopardy! show #617." />
</head>
<body>
<div id="navbar">
<span id="navbarlogo"><a href="http://www.j-archive.com"><img src="http://www.j-archive.com/j-a.gif" width="100" height="22" alt="J! Archive" /></a></span>
<span id="navbartext"><a href="http://www.j-archive.com/showseason.php?season=27">[current season]</a> <a href="http://www.j-archive.com/showseason.php?season=26">[last season]</a> <a href="http://www.j-archive.com/listseasons.php">[all seasons]</a> <a href="http://www.j-archive.com/listprizes.php">[prizes]</a> <a href="http://www.j-archive.com/wageringcalculator.php">[wagering calculator]</a> <a href="http://www.j-archive.com/help.php">[help]</a></span>
<form id="navbarsearch" action="http://www.j-archive.com/search.php" method="get" enctype="x-www-form-encoded">
<fieldset class="noborder">
<input type="text" class="search" name="search" id="search" maxlength="256" value="" />
<input type="submit" class="search_button" name="submit" value="Search" />
</fieldset>
</form>
</div>
<div id="content">
<div id="game_title"><h1>Show #617 - Tuesday, April 21, 1987</h1></div>
<div id="game_comments">Richard Cordray game 1.</div>
<div id="contestants">
<h2>Contestants</h2>
<table id="contestants_table"><tr>
<td align="left" valign="middle" style="width:150px">
</td>
<td>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2718" rel="external">Richard Cordray</a>, a judicial clerk from Grove City, Ohio</p>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2717" rel="external">Susan Wilcox</a>, a teacher[?] from Hawaii[?]</p>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2716" rel="external">Larry Dundas</a>, a policeman[?] from South Philadelphia, Pennsylvania (whose 1-day cash winnings total $14,000)</p>
</td>
<td align="right" valign="middle" style="width:150px">
<a href="showgame.php?game_id=1336">[next game >>]</a>
</td>
</tr></table>
</div>
<div id="jeopardy_round">
<h2>Jeopardy! Round</h2>
<table class="round">
<tr>
<td class="category">
<table>
<tr><td class="category_name">SUMMER</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">AUTOMOBILES</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">LESSER-KNOWN NAMES</td></tr>
<tr><td class="category_comments">(Alex: ...of famous people, of course.)</td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">COLONIAL AMERICA</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">STARRY SONGS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">GOING IN STYLE</td></tr>
<tr><td class="category_comments">(Alex: A bit of a play on words there, so be careful.)</td></tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_1', 'clue_J_1_1_stuck', '<em class="correct_response">thunderstorms</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_1_1', 'clue_J_1_1_stuck', 'Though about 50,000 of these storms occur daily worldwide, in U.S., they occur mainly in spring & summer')" onclick="togglestick('clue_J_1_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_1_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$100</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71177" title="Suggest a correction for this clue" rel="nofollow">15</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_1" class="clue_text">Though about 50,000 of these storms occur daily worldwide, in U.S., they occur mainly in spring & summer</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_1', 'clue_J_3_1_stuck', '<em class="correct_response">Adolf Hitler</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_J_3_1', 'clue_J_3_1_stuck', 'Most famous son of the man born Alois Schicklgruber in 1837')" onclick="togglestick('clue_J_3_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_3_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$100</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71121" title="Suggest a correction for this clue" rel="nofollow">1</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_1" class="clue_text">Most famous son of the man born Alois Schicklgruber in 1837</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_1', 'clue_J_4_1_stuck', '<em class="correct_response">male</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_4_1', 'clue_J_4_1_stuck', 'Local colonial voter eligibility was usually determined by being Protestant, free, a property owner & this sex')" onclick="togglestick('clue_J_4_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_4_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$100</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71126" title="Suggest a correction for this clue" rel="nofollow">12</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_1" class="clue_text">Local colonial voter eligibility was usually determined by being Protestant, free, a property owner & this sex</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_1', 'clue_J_5_1_stuck', '<em class="correct_response">your pocket</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_5_1', 'clue_J_5_1_stuck', 'Perry Como advised "Catch a falling star & put it..." there')" onclick="togglestick('clue_J_5_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_5_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$100</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71129" title="Suggest a correction for this clue" rel="nofollow">4</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_1" class="clue_text">Perry Como advised "Catch a falling star & put it..." there</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_1', 'clue_J_6_1_stuck', '(Larry: Who is Isabel Perón?)<br /><br /><em class="correct_response">Eva Perón (or Evita)</em><br /><br /><table width="100%"><tr><td class="wrong">Larry</td><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_6_1', 'clue_J_6_1_stuck', 'Years after her death, Juan Peron often ate dinner with this wife\'s body seated at his table')" onclick="togglestick('clue_J_6_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_6_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$100</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71186" title="Suggest a correction for this clue" rel="nofollow">17</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_1" class="clue_text">Years after her death, Juan Peron often ate dinner with this wife's body seated at his table</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_2', 'clue_J_3_2_stuck', '<em class="correct_response">Malcolm X</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_J_3_2', 'clue_J_3_2_stuck', 'Malcolm Little')" onclick="togglestick('clue_J_3_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_3_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71122" title="Suggest a correction for this clue" rel="nofollow">2</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_2" class="clue_text">Malcolm Little</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_2', 'clue_J_4_2_stuck', '<em class="correct_response">Oxford</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_4_2', 'clue_J_4_2_stuck', 'In 1762 Ben Franklin was given an honorary degree by this English university')" onclick="togglestick('clue_J_4_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_4_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71127" title="Suggest a correction for this clue" rel="nofollow">13</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_2" class="clue_text">In 1762 Ben Franklin was given an honorary degree by this English university</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_2', 'clue_J_5_2_stuck', '(Alex: [After Larry\'s correct response] Thank you.)<br />[Laughter]<br /><br /><em class="correct_response">"I Only Have Eyes For You"</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_J_5_2', 'clue_J_5_2_stuck', 'It begins, "Are the stars out tonight, I can\'t tell if it\'s cloudy or bright"')" onclick="togglestick('clue_J_5_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_5_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71130" title="Suggest a correction for this clue" rel="nofollow">5</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_2" class="clue_text">It begins, "Are the stars out tonight, I can't tell if it's cloudy or bright"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_2', 'clue_J_6_2_stuck', '<em class="correct_response">Frisbees</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_6_2', 'clue_J_6_2_stuck', 'When he dies, the author of "Frisbee" wants his ashes mixed w/ polyethylene & made into these')" onclick="togglestick('clue_J_6_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_6_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71187" title="Suggest a correction for this clue" rel="nofollow">24</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_2" class="clue_text">When he dies, the author of "Frisbee" wants his ashes mixed w/ polyethylene & made into these</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_3', 'clue_J_1_3_stuck', '(Alex: We\'ve got a minute to go in the round. Susan, select.)<br /><br /><em class="correct_response">summer squashes</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_1_3', 'clue_J_1_3_stuck', 'Cocozell, patty pan & yellow crookneck')" onclick="togglestick('clue_J_1_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_1_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71178" title="Suggest a correction for this clue" rel="nofollow">23</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_3" class="clue_text">Cocozell, patty pan & yellow crookneck</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_3', 'clue_J_2_3_stuck', '<em class="correct_response">shift gears</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_2_3', 'clue_J_2_3_stuck', '"Synchromesh" allows you to do this, either up or down')" onclick="togglestick('clue_J_2_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_2_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71181" title="Suggest a correction for this clue" rel="nofollow">22</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_3" class="clue_text">"Synchromesh" allows you to do this, either up or down</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_3', 'clue_J_3_3_stuck', '(Larry: Who is Daniel?)<br /><br /><em class="correct_response">Pat</em><br /><br /><table width="100%"><tr><td class="wrong">Larry</td><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_3_3', 'clue_J_3_3_stuck', 'Charles Eugene Boone is better known by this 1st name')" onclick="togglestick('clue_J_3_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_3_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71123" title="Suggest a correction for this clue" rel="nofollow">3</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_3" class="clue_text">Charles Eugene Boone is better known by this 1st name</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_3', 'clue_J_4_3_stuck', '(Richard: What is whiskey?)<br /><br /><em class="correct_response">rum</em><br /><br /><table width="100%"><tr><td class="right">Larry</td><td class="wrong">Richard</td></tr></table>')" onmouseout="toggle('clue_J_4_3', 'clue_J_4_3_stuck', 'The largest 18th c. manufacturing industry in New England was the distilling of this liquor')" onclick="togglestick('clue_J_4_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_4_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71128" title="Suggest a correction for this clue" rel="nofollow">8</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_3" class="clue_text">The largest 18th c. manufacturing industry in New England was the distilling of this liquor</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_3', 'clue_J_5_3_stuck', '<em class="correct_response">(the dawning of) the Age of Aquarius</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_5_3', 'clue_J_5_3_stuck', 'It\'s when "Peace will guide the planets & love will steer the stars"')" onclick="togglestick('clue_J_5_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_5_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71131" title="Suggest a correction for this clue" rel="nofollow">6</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_3" class="clue_text">It's when "Peace will guide the planets & love will steer the stars"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_3', 'clue_J_6_3_stuck', '(Larry: No. Who is Bela Lugosi?)<br />...<br />(Richard: [Quickly, after giving the correct response] AUTOMOBILES for $200, please.)<br />(Alex: The answer--)<br />[The end-of-round signal sounds.]<br />(Alex: --we won\'t get a chance for that clue. We had our Daily Double in this round at the $200 spot in the SUMMER category. Well, we went up, and then we went down, and at the end, Susan was very much up, with $1300.)<br /><br /><em class="correct_response">Sarah Bernhardt</em><br /><br /><table width="100%"><tr><td class="wrong">Larry</td><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_6_3', 'clue_J_6_3_stuck', 'Perhaps rehearsing for death, this "divine" 19th c. star slept in a satin-lined casket')" onclick="togglestick('clue_J_6_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_6_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71188" title="Suggest a correction for this clue" rel="nofollow">27</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_3" class="clue_text">Perhaps rehearsing for death, this "divine" 19th c. star slept in a satin-lined casket</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_4', 'clue_J_1_4_stuck', '(Richard: What is <i>A Midsummer Night\'s Dream</i>?)<br />(Susan: What is <i>A Midsummer Night\'s Comedy</i>?)<br /><br /><em class="correct_response"><i>A Midsummer Night\'s Sex Comedy</i></em><br /><br /><table width="100%"><tr><td class="wrong">Susan</td><td class="wrong">Richard</td></tr></table><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_1_4', 'clue_J_1_4_stuck', '1982 Woody Allen movie whose title suggests he had a little help from Shakespeare')" onclick="togglestick('clue_J_1_4_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_1_4_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71179" title="Suggest a correction for this clue" rel="nofollow">18</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_4" class="clue_text">1982 Woody Allen movie whose title suggests he had a little help from Shakespeare</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_4', 'clue_J_2_4_stuck', '<em class="correct_response">the speedometer & the odometer</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_2_4', 'clue_J_2_4_stuck', 'The 2 standard gauges in a U.S. car that are calibrated in miles')" onclick="togglestick('clue_J_2_4_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_2_4_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71182" title="Suggest a correction for this clue" rel="nofollow">20</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_4" class="clue_text">The 2 standard gauges in a U.S. car that are calibrated in miles</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_4', 'clue_J_3_4_stuck', '(Larry: Better get that one right.)<br /><br /><em class="correct_response">Chubby Checker</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_J_3_4', 'clue_J_3_4_stuck', 'Rock & roller Ernest Evans, his stage name is a "twisted" version of Fats Domino\'s')" onclick="togglestick('clue_J_3_4_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_3_4_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71124" title="Suggest a correction for this clue" rel="nofollow">9</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_4" class="clue_text">Rock & roller Ernest Evans, his stage name is a "twisted" version of Fats Domino's</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_4', 'clue_J_4_4_stuck', '(Larry: What was Maine?)<br /><br /><em class="correct_response">the Indians</em><br /><br /><table width="100%"><tr><td class="wrong">Larry</td><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_4_4', 'clue_J_4_4_stuck', 'Anthropologists have stated these peoples were at a Neolithic stage when colonists landed')" onclick="togglestick('clue_J_4_4_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_4_4_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71184" title="Suggest a correction for this clue" rel="nofollow">14</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_4" class="clue_text">Anthropologists have stated these peoples were at a Neolithic stage when colonists landed</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_4', 'clue_J_5_4_stuck', '<em class="correct_response">"Up On The Roof"</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_5_4', 'clue_J_5_4_stuck', '"At night the stars put on a show for free & darling you can share it all with me..." there')" onclick="togglestick('clue_J_5_4_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_5_4_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71132" title="Suggest a correction for this clue" rel="nofollow">7</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_4" class="clue_text">"At night the stars put on a show for free & darling you can share it all with me..." there</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_4', 'clue_J_6_4_stuck', '<em class="correct_response">herself</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_6_4', 'clue_J_6_4_stuck', 'Napoleon\'s sister Pauline asked that a nude statue of this person be displayed at her funeral')" onclick="togglestick('clue_J_6_4_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_6_4_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71189" title="Suggest a correction for this clue" rel="nofollow">26</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_4" class="clue_text">Napoleon's sister Pauline asked that a nude statue of this person be displayed at her funeral</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_5', 'clue_J_1_5_stuck', '<em class="correct_response">March 21 (or March 20)</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_1_5', 'clue_J_1_5_stuck', 'Date you arrive in New Zealand if your itinerary says you land in Auckland the last day of their summer')" onclick="togglestick('clue_J_1_5_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_1_5_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$500</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71180" title="Suggest a correction for this clue" rel="nofollow">19</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_5" class="clue_text">Date you arrive in New Zealand if your itinerary says you land in Auckland the last day of their summer</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_5', 'clue_J_2_5_stuck', '(Susan: Uh, what is gasoline?)<br />(Richard: What is ethanol?)<br />...<br />(Alex: Susan wouldn\'t have any use for it on the island of Hawaii for dealing with the cold, of course, but it\'s [*], [*]. You need it for the hot weather, also.)<br /><br /><em class="correct_response">antifreeze</em><br /><br /><table width="100%"><tr><td class="wrong">Susan</td><td class="wrong">Richard</td></tr></table><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_2_5', 'clue_J_2_5_stuck', 'Good brands of this ethylene-glycol base fluid contain rust inhibitors & lubricants')" onclick="togglestick('clue_J_2_5_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_2_5_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$500</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71183" title="Suggest a correction for this clue" rel="nofollow">21</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_5" class="clue_text">Good brands of this ethylene-glycol base fluid contain rust inhibitors & lubricants</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_5', 'clue_J_3_5_stuck', '[A lone male audience member claps and says "All right!" when Larry gets the clue correct.]<br /><br /><em class="correct_response">Bodine</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_J_3_5', 'clue_J_3_5_stuck', 'While Beverly Hillbillies Jed & Elly May had the last name Clampett, Jethro\'s was this')" onclick="togglestick('clue_J_3_5_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_3_5_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$500</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71125" title="Suggest a correction for this clue" rel="nofollow">10</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_5" class="clue_text">While Beverly Hillbillies Jed & Elly May had the last name Clampett, Jethro's was this</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_5', 'clue_J_4_5_stuck', '<em class="correct_response">tea</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_J_4_5', 'clue_J_4_5_stuck', 'The infamous tax on this was used to save the British East India Company from bankruptcy')" onclick="togglestick('clue_J_4_5_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_4_5_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$500</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71185" title="Suggest a correction for this clue" rel="nofollow">16</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_5" class="clue_text">The infamous tax on this was used to save the British East India Company from bankruptcy</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_5', 'clue_J_5_5_stuck', '(Larry: What is "Wake Up, Little Susie"?)<br /><br /><em class="correct_response">"Bye Bye, Love"</em><br /><br /><table width="100%"><tr><td class="wrong">Larry</td></tr></table><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_5_5', 'clue_J_5_5_stuck', 'Song in which the Everly Brothers declared "I\'m through with counting the stars above"')" onclick="togglestick('clue_J_5_5_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_5_5_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$500</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71133" title="Suggest a correction for this clue" rel="nofollow">11</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_5" class="clue_text">Song in which the Everly Brothers declared "I'm through with counting the stars above"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_5', 'clue_J_6_5_stuck', '(Richard: What is his wooden leg?)<br /><br /><em class="correct_response">his (real) leg</em><br /><br /><table width="100%"><tr><td class="wrong">Richard</td></tr></table><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_6_5', 'clue_J_6_5_stuck', 'It\'s said this part of Peter Stuyvesant\'s body was buried with full military honors years before his death')" onclick="togglestick('clue_J_6_5_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_6_5_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$500</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71190" title="Suggest a correction for this clue" rel="nofollow">25</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_5" class="clue_text">It's said this part of Peter Stuyvesant's body was buried with full military honors years before his death</td>
</tr>
</table>
</td>
</tr>
</table>
<h3>Scores at the first commercial break (after clue 13):</h3>
<table>
<tr>
<td class="score_player_nickname">Larry</td>
<td class="score_player_nickname">Susan</td>
<td class="score_player_nickname">Richard</td>
</tr>
<tr>
<td class="score_positive">$900</td>
<td class="score_positive">$800</td>
<td class="score_positive">$300</td>
</tr>
</table>
<h3>Scores at the end of the Jeopardy! Round:</h3>
<table>
<tr>
<td class="score_player_nickname">Larry</td>
<td class="score_player_nickname">Susan</td>
<td class="score_player_nickname">Richard</td>
</tr>
<tr>
<td class="score_positive">$100</td>
<td class="score_positive">$1,300</td>
<td class="score_positive">$300</td>
</tr>
</table>
</div>
<div id="double_jeopardy_round">
<h2>Double Jeopardy! Round</h2>
<table class="round">
<tr>
<td class="category">
<table>
<tr><td class="category_name">ROYALTY</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">BIRDS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">FICTIONAL CHARACTERS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">TV COMMERCIALS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">WORLD GEOGRAPHY</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">LETTER PERFECT</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_1_1', 'clue_DJ_1_1_stuck', '<em class="correct_response">a man</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_DJ_1_1', 'clue_DJ_1_1_stuck', 'As a symbol of her power, Egypt\'s Queen Hatshepsut wore a beard & had artists depict her as this')" onclick="togglestick('clue_DJ_1_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_1_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71204" title="Suggest a correction for this clue" rel="nofollow">1</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_1" class="clue_text">As a symbol of her power, Egypt's Queen Hatshepsut wore a beard & had artists depict her as this</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_2_1', 'clue_DJ_2_1_stuck', '<em class="correct_response">geese</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_DJ_2_1', 'clue_DJ_2_1_stuck', 'The breed of these named for Canada are sometimes called "honkers"')" onclick="togglestick('clue_DJ_2_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_2_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71209" title="Suggest a correction for this clue" rel="nofollow">2</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_1" class="clue_text">The breed of these named for Canada are sometimes called "honkers"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_3_1', 'clue_DJ_3_1_stuck', '<em class="correct_response">Dickens</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_3_1', 'clue_DJ_3_1_stuck', 'Among this author\'s title characters are Dombey & Son, Barnaby Rudge, & Martin Chuzzlewit')" onclick="togglestick('clue_DJ_3_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_3_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71213" title="Suggest a correction for this clue" rel="nofollow">7</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_1" class="clue_text">Among this author's title characters are Dombey & Son, Barnaby Rudge, & Martin Chuzzlewit</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_1', 'clue_DJ_5_1_stuck', '<em class="correct_response">the Dominican Republic</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_5_1', 'clue_DJ_5_1_stuck', 'Hispaniola is an island comprised of Haiti & this other nation')" onclick="togglestick('clue_DJ_5_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_5_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71222" title="Suggest a correction for this clue" rel="nofollow">18</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_5_1" class="clue_text">Hispaniola is an island comprised of Haiti & this other nation</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_6_1', 'clue_DJ_6_1_stuck', '<em class="correct_response">Q</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_6_1', 'clue_DJ_6_1_stuck', 'In 1957 Dale Hawkins song, letter which followed "Suzie"')" onclick="togglestick('clue_DJ_6_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_6_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71227" title="Suggest a correction for this clue" rel="nofollow">19</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_6_1" class="clue_text">In 1957 Dale Hawkins song, letter which followed "Suzie"</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_1_2', 'clue_DJ_1_2_stuck', '<em class="correct_response">his heart</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_1_2', 'clue_DJ_1_2_stuck', 'This part of Robert the Bruce\'s body was cut out & taken on Crusades')" onclick="togglestick('clue_DJ_1_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_1_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71205" title="Suggest a correction for this clue" rel="nofollow">4</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_2" class="clue_text">This part of Robert the Bruce's body was cut out & taken on Crusades</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_2_2', 'clue_DJ_2_2_stuck', '<em class="correct_response">Hartz</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_DJ_2_2', 'clue_DJ_2_2_stuck', 'German mountains where best singing canaries are bred, or brand of bird seed you might feed yours')" onclick="togglestick('clue_DJ_2_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_2_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71210" title="Suggest a correction for this clue" rel="nofollow">3</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_2" class="clue_text">German mountains where best singing canaries are bred, or brand of bird seed you might feed yours</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_3_2', 'clue_DJ_3_2_stuck', '<em class="correct_response">Lorna</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_DJ_3_2', 'clue_DJ_3_2_stuck', 'The band of outlaws in Glen Doone adopted a girl they captured & named her this')" onclick="togglestick('clue_DJ_3_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_3_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71214" title="Suggest a correction for this clue" rel="nofollow">6</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_2" class="clue_text">The band of outlaws in Glen Doone adopted a girl they captured & named her this</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_4_2', 'clue_DJ_4_2_stuck', '<em class="correct_response">Palmolive</em><br /><br /><table width="100%"><tr><td class="right">Susan</td></tr></table>')" onmouseout="toggle('clue_DJ_4_2', 'clue_DJ_4_2_stuck', 'If you don\'t believe this "Softens hands while you do dishes", ask Madge')" onclick="togglestick('clue_DJ_4_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_4_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71218" title="Suggest a correction for this clue" rel="nofollow">27</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_2" class="clue_text">If you don't believe this "Softens hands while you do dishes", ask Madge</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_2', 'clue_DJ_5_2_stuck', '(Alex: The answer there is one of the two Daily Doubles in the round. You\'ve got $3300, you lead Susan by $400, Richard. How much do you want to risk?)<br />(Richard: $3300, please.)<br />[Someone in the audience whistles.]<br />(Alex: For $3300 in the category WORLD GEOGRAPHY. This is a True Daily Double, then.)<br />...<br />(Alex: Richard?)<br /><br /><em class="correct_response">(2 of) Jordan, Jamaica, & Japan</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_5_2', 'clue_DJ_5_2_stuck', '2 of the 3 countries of the world that begin with the letter "J"')" onclick="togglestick('clue_DJ_5_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_5_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value_daily_double">DD: $3,300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71223" title="Suggest a correction for this clue" rel="nofollow">17</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_5_2" class="clue_text">2 of the 3 countries of the world that begin with the letter "J"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_6_2', 'clue_DJ_6_2_stuck', '<em class="correct_response">H (for Hubert Horatio Humphrey)</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_6_2', 'clue_DJ_6_2_stuck', 'Letter which began all 3 names of the man who was vice president between Johnson & Agnew')" onclick="togglestick('clue_DJ_6_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_6_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71228" title="Suggest a correction for this clue" rel="nofollow">20</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_6_2" class="clue_text">Letter which began all 3 names of the man who was vice president between Johnson & Agnew</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_1_3', 'clue_DJ_1_3_stuck', '<em class="correct_response">Marie Antoinette</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_DJ_1_3', 'clue_DJ_1_3_stuck', 'Tho she may not have said "Qu\'ils mangent de la brioche!", she was guillotined in 1793 anyway')" onclick="togglestick('clue_DJ_1_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_1_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$600</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71206" title="Suggest a correction for this clue" rel="nofollow">23</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_3" class="clue_text">Tho she may not have said "Qu'ils mangent de la brioche!", she was guillotined in 1793 anyway</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_3_3', 'clue_DJ_3_3_stuck', '<em class="correct_response">Velvet</em><br /><br /><table width="100%"><tr><td class="right">Larry</td></tr></table>')" onmouseout="toggle('clue_DJ_3_3', 'clue_DJ_3_3_stuck', 'First name of the girl jockey Elizabeth Taylor played in 1944 film')" onclick="togglestick('clue_DJ_3_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_3_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$600</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71215" title="Suggest a correction for this clue" rel="nofollow">5</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_3" class="clue_text">First name of the girl jockey Elizabeth Taylor played in 1944 film</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_4_3', 'clue_DJ_4_3_stuck', '<em class="correct_response">Paco Rabanne</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_DJ_4_3', 'clue_DJ_4_3_stuck', 'Said to be 1 of TV\'s sexiest ½ minutes, the 1982 "Man in Bed" ad pushed this men\'s cologne')" onclick="togglestick('clue_DJ_4_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_4_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$600</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71219" title="Suggest a correction for this clue" rel="nofollow">26</a></td>