-
Notifications
You must be signed in to change notification settings - Fork 2
/
621.html
1300 lines (1271 loc) · 68.2 KB
/
621.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 #621, aired 1987-04-27</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 Bob Peck Eileen Oshinsky Richard Cordray Final clue response question answer Daily Double" /><meta name="description" content="An archive of clues and players for Jeopardy! show #621." />
</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 #621 - Monday, April 27, 1987</h1></div>
<div id="game_comments">Richard Cordray game 5.</div>
<div id="contestants">
<h2>Contestants</h2>
<table id="contestants_table"><tr>
<td align="left" valign="middle" style="width:150px">
<a href="showgame.php?game_id=1338">[<< previous game]</a>
</td>
<td>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2725" rel="external">Bob Peck</a>, a forensic accountant from Irvine, California</p>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2726" rel="external">Eileen Oshinsky</a>, a writer and editor originally from New York</p>
<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 (whose 4-day cash winnings total $34,902)</p>
</td>
<td align="right" valign="middle" style="width:150px">
</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">TRANSPORTATION</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">WORDS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">THE HUSBAND MARRIED</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">MEMPHIS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">THE SENSES</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">YE GODS</td></tr>
<tr><td class="category_comments"></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">New York City</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', 'A 1984 count reportedly indicated this city\'s streets contained 927,000 potholes')" 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=71573" title="Suggest a correction for this clue" rel="nofollow">4</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_1" class="clue_text">A 1984 count reportedly indicated this city's streets contained 927,000 potholes</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">Richard Burton</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_3_1', 'clue_J_3_1_stuck', 'Sybil Williams,<br />Elizabeth Taylor,<br />Elizabeth Taylor,<br />Susan Hunt &<br />Sally Hay')" 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=71589" title="Suggest a correction for this clue" rel="nofollow">17</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_1" class="clue_text">Sybil Williams,<br />Elizabeth Taylor,<br />Elizabeth Taylor,<br />Susan Hunt &<br />Sally Hay</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_1', 'clue_J_6_1_stuck', '(Eileen: What is thunder?)<br />(Richard: What is a lightning bolt?)<br /><br /><em class="correct_response">the hammer</em><br /><br /><table width="100%"><tr><td class="wrong">Richard</td><td class="wrong">Eileen</td></tr></table><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_6_1', 'clue_J_6_1_stuck', 'Like a boomerang, this tool named "Mjolnir" always returned to Thor\'s hand')" 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=71577" title="Suggest a correction for this clue" rel="nofollow">2</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_1" class="clue_text">Like a boomerang, this tool named "Mjolnir" always returned to Thor's hand</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_2', 'clue_J_1_2_stuck', '<em class="correct_response">Theodore Roosevelt</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_1_2', 'clue_J_1_2_stuck', 'While in office, he became 1st president to ride in a car & submerge in a submarine')" onclick="togglestick('clue_J_1_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_1_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71582" title="Suggest a correction for this clue" rel="nofollow">11</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_2" class="clue_text">While in office, he became 1st president to ride in a car & submerge in a submarine</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_2', 'clue_J_2_2_stuck', '<em class="correct_response">a church</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_2_2', 'clue_J_2_2_stuck', 'While a knave with "K" is a jack, a nave without the "K" is part of this')" onclick="togglestick('clue_J_2_2_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_2_2_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71585" title="Suggest a correction for this clue" rel="nofollow">21</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_2" class="clue_text">While a knave with "K" is a jack, a nave without the "K" is part of this</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_2', 'clue_J_3_2_stuck', '<em class="correct_response">Howard Hughes</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_3_2', 'clue_J_3_2_stuck', 'Jean Peters<br />& Terry Moore, so Terry claimed')" 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=71590" title="Suggest a correction for this clue" rel="nofollow">16</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_2" class="clue_text">Jean Peters<br />& Terry Moore, so Terry claimed</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_2', 'clue_J_5_2_stuck', '<em class="correct_response">taste</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_5_2', 'clue_J_5_2_stuck', '"If you don\'t have Schlitz, you don\'t have gusto," but you still have this, your gustatory sense')" 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=71595" title="Suggest a correction for this clue" rel="nofollow">12</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_2" class="clue_text">"If you don't have Schlitz, you don't have gusto," but you still have this, your gustatory sense</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_2', 'clue_J_6_2_stuck', '(Alex: [*], yes, fly balls.)<br /><br /><em class="correct_response">Fungo</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_6_2', 'clue_J_6_2_stuck', 'Of Bingo, Fungo, or Dongo, the one that isn\'t an African God')" 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=71578" title="Suggest a correction for this clue" rel="nofollow">3</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_2" class="clue_text">Of Bingo, Fungo, or Dongo, the one that isn't an African God</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_3', 'clue_J_1_3_stuck', '<em class="correct_response">a freighter (ship)</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', 'Guiness says on a calm night in 1966 one of these became largest object ever stolen by one man')" 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=71583" 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">Guiness says on a calm night in 1966 one of these became largest object ever stolen by one man</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">a facsimile</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_2_3', 'clue_J_2_3_stuck', 'From Latin for "make it similar", it\'s an exact copy or reproduction of a document')" 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=71586" title="Suggest a correction for this clue" rel="nofollow">19</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_3" class="clue_text">From Latin for "make it similar", it's an exact copy or reproduction of a document</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_3', 'clue_J_3_3_stuck', '<em class="correct_response">Napoleon</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_3_3', 'clue_J_3_3_stuck', 'Josephine de Beauharnais &<br />Archduchess Marie Louise of Austria')" 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=71591" title="Suggest a correction for this clue" rel="nofollow">15</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_3" class="clue_text">Josephine de Beauharnais &<br />Archduchess Marie Louise of Austria</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_3', 'clue_J_4_3_stuck', '(Eileen: What is the Hilton?)<br /><br /><em class="correct_response">Holiday Inn</em><br /><br /><table width="100%"><tr><td class="wrong">Eileen</td><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_4_3', 'clue_J_4_3_stuck', 'Memphis is headquarters of this, the world\'s largest hotel chain')" 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=71594" title="Suggest a correction for this clue" rel="nofollow">24</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_3" class="clue_text">Memphis is headquarters of this, the world's largest hotel chain</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_3', 'clue_J_5_3_stuck', '(Bob: What is a horn?)<br />[Originally ruled incorrect, reversed after first break]<br /><br /><em class="correct_response">an ear trumpet</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_5_3', 'clue_J_5_3_stuck', 'Appropriately named "instrument" used by Beethoven to compensate for his hearing loss')" 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=71575" title="Suggest a correction for this clue" rel="nofollow">7</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_3" class="clue_text">Appropriately named "instrument" used by Beethoven to compensate for his hearing loss</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_3', 'clue_J_6_3_stuck', '<em class="correct_response">nectar</em><br /><br /><table width="100%"><tr><td class="right">Eileen</td></tr></table>')" onmouseout="toggle('clue_J_6_3', 'clue_J_6_3_stuck', 'This drink of the gods on Mt. Olympus was said to resemble red wine')" 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=71579" title="Suggest a correction for this clue" rel="nofollow">1</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_3" class="clue_text">This drink of the gods on Mt. Olympus was said to resemble red wine</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_4', 'clue_J_1_4_stuck', '(Alex: Richard?)<br />(Richard: Who are... the... Bandits?)<br />(Alex: [Chuckles] No, I sensed you were drawing a blank on that one. It was a popular group, too, in country music. [*].)<br />(Richard: Hm.)<br />(Alex: [*]. All right, that cost you $400, you\'re down to five, you\'re still the only player with any cash, and we\'re going to take a break right now, and allow Eileen and Bob to catch their breath and get ready for a continuation of round one on <i>Jeopardy!</i>, which will resume after this.)<br /><br /><em class="correct_response">Alabama</em><br /><br /><table width="100%"><tr><td class="wrong">Richard</td></tr></table>')" onmouseout="toggle('clue_J_1_4', 'clue_J_1_4_stuck', 'Group which topped the country charts with <a href="http://www.j-archive.com/media/1987-04-27_J_09.mp3">the following</a> song about a truck driver:<br /><br /><i>[Truck noises]<br />"Roll on, highway /<br />Roll on along /<br />Roll on, Daddy, \'til you get back home /<br />Roll on family /<br />Roll on crew /<br />Roll on, Mama, like I asked you to do /<br />And roll on eighteen wheeler, roll on /<br />(Roll on!)..."</i>')" 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_daily_double">DD: $400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71574" title="Suggest a correction for this clue" rel="nofollow">9</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_4" class="clue_text">Group which topped the country charts with <a href="http://www.j-archive.com/media/1987-04-27_J_09.mp3">the following</a> song about a truck driver:<br /><br /><i>[Truck noises]<br />"Roll on, highway /<br />Roll on along /<br />Roll on, Daddy, 'til you get back home /<br />Roll on family /<br />Roll on crew /<br />Roll on, Mama, like I asked you to do /<br />And roll on eighteen wheeler, roll on /<br />(Roll on!)..."</i></td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_4', 'clue_J_2_4_stuck', '(Bob: What is a stake?)<br />(Alex: Be more specific.)<br /><br /><em class="correct_response">a grub stake</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_2_4', 'clue_J_2_4_stuck', 'Literally meaning "food bet", it\'s supplies advanced to a miner in return for shares in profits')" 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=71587" title="Suggest a correction for this clue" rel="nofollow">18</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_4" class="clue_text">Literally meaning "food bet", it's supplies advanced to a miner in return for shares in profits</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_4', 'clue_J_3_4_stuck', '<em class="correct_response">Pablo Picasso</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_3_4', 'clue_J_3_4_stuck', 'Ballerina Olga Koklova,<br />& then Jacquiline Roque,<br />but not Francoise Gilot, Paloma\'s mother')" 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=71592" title="Suggest a correction for this clue" rel="nofollow">14</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_4" class="clue_text">Ballerina Olga Koklova,<br />& then Jacquiline Roque,<br />but not Francoise Gilot, Paloma's mother</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_4', 'clue_J_5_4_stuck', '<em class="correct_response">the tip (the front of the tongue)</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_5_4', 'clue_J_5_4_stuck', 'It\'s primarily this area on your tongue which tastes sweet sensations')" 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=71596" title="Suggest a correction for this clue" rel="nofollow">10</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_4" class="clue_text">It's primarily this area on your tongue which tastes sweet sensations</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">Venus</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_6_4', 'clue_J_6_4_stuck', 'Though the most beautiful Roman goddess, she married the ugliest god, Vulcan')" 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=71580" title="Suggest a correction for this clue" rel="nofollow">5</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_4" class="clue_text">Though the most beautiful Roman goddess, she married the ugliest god, Vulcan</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">the Stanley Steamer</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_J_1_5', 'clue_J_1_5_stuck', 'In production from 1897 to 1924, this car was nicknamed "The Tea Kettle"')" 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=71584" title="Suggest a correction for this clue" rel="nofollow">22</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_5" class="clue_text">In production from 1897 to 1924, this car was nicknamed "The Tea Kettle"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_5', 'clue_J_2_5_stuck', '<em class="correct_response">giving names to things</em><br /><br /><table width="100%"><tr><td class="right">Eileen</td></tr></table>')" onmouseout="toggle('clue_J_2_5', 'clue_J_2_5_stuck', 'The job of a nomenclator')" 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=71588" title="Suggest a correction for this clue" rel="nofollow">20</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_5" class="clue_text">The job of a nomenclator</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_5', 'clue_J_3_5_stuck', '<em class="correct_response">Johnny Carson</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_3_5', 'clue_J_3_5_stuck', 'Jody Wolcott,<br />Joanne Copeland<br />& Joanna Holland')" 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=71593" title="Suggest a correction for this clue" rel="nofollow">13</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_5" class="clue_text">Jody Wolcott,<br />Joanne Copeland<br />& Joanna Holland</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_5', 'clue_J_5_5_stuck', '<em class="correct_response">the soul</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_5_5', 'clue_J_5_5_stuck', 'Ancient philosophers reportedly called the senses the "windows of" this')" 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=71576" title="Suggest a correction for this clue" rel="nofollow">8</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_5" class="clue_text">Ancient philosophers reportedly called the senses the "windows of" this</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_5', 'clue_J_6_5_stuck', '(Eileen: What is literature?)<br />(Bob: What is, uh, theater?)<br /><br /><em class="correct_response">comedy</em><br /><br /><table width="100%"><tr><td class="wrong">Eileen</td><td class="wrong">Bob</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', 'Ancient Greeks might have asked if you heard the one about Thalia, the muse of this')" 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=71581" title="Suggest a correction for this clue" rel="nofollow">6</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_5" class="clue_text">Ancient Greeks might have asked if you heard the one about Thalia, the muse of this</td>
</tr>
</table>
</td>
</tr>
</table>
<h3>Scores at the first commercial break (after clue 9):</h3>
<table>
<tr>
<td class="score_player_nickname">Richard</td>
<td class="score_player_nickname">Eileen</td>
<td class="score_player_nickname">Bob</td>
</tr>
<tr>
<td class="score_positive">$500</td>
<td class="score_negative">-$300</td>
<td class="score_positive">$0</td>
</tr>
</table>
<h3>Scores at the end of the Jeopardy! Round:</h3>
<table>
<tr>
<td class="score_player_nickname">Richard</td>
<td class="score_player_nickname">Eileen</td>
<td class="score_player_nickname">Bob</td>
</tr>
<tr>
<td class="score_positive">$1,800</td>
<td class="score_negative">-$100</td>
<td class="score_positive">$2,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">WORLD WAR II</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">MUSIC BUSINESS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">THE BIBLE</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">THE OLYMPICS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">NEWSPAPERS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">TOUGH TV TRIVIA</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">Rommel</em><br /><br /><table width="100%"><tr><td class="right">Eileen</td></tr></table>')" onmouseout="toggle('clue_DJ_1_1', 'clue_DJ_1_1_stuck', 'Germany\'s "Desert Fox"')" 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=71597" title="Suggest a correction for this clue" rel="nofollow">25</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_1" class="clue_text">Germany's "Desert Fox"</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">a platinum record</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_2_1', 'clue_DJ_2_1_stuck', 'RIAA award for sales of 1,000,000 LP\'s; if solid, it\'d be worth over $53,000')" 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=71602" title="Suggest a correction for this clue" rel="nofollow">21</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_1" class="clue_text">RIAA award for sales of 1,000,000 LP's; if solid, it'd be worth over $53,000</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">the Earth</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', 'Isaiah quotes the Lord as saying "Heaven is my throne, &" this "is my footstool"')" 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=71605" title="Suggest a correction for this clue" rel="nofollow">1</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_1" class="clue_text">Isaiah quotes the Lord as saying "Heaven is my throne, &" this "is my footstool"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_4_1', 'clue_DJ_4_1_stuck', '<em class="correct_response">7</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_4_1', 'clue_DJ_4_1_stuck', '# of events in the women\'s heptathlon')" onclick="togglestick('clue_DJ_4_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_4_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$200</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71610" title="Suggest a correction for this clue" rel="nofollow">13</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_1" class="clue_text"># of events in the women's heptathlon</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_1', 'clue_DJ_5_1_stuck', '<em class="correct_response">the <i>San Francisco Chronicle</i></em><br /><br /><table width="100%"><tr><td class="right">Eileen</td></tr></table>')" onmouseout="toggle('clue_DJ_5_1', 'clue_DJ_5_1_stuck', 'San Francisco paper which owns TV station KRON')" 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=71615" title="Suggest a correction for this clue" rel="nofollow">8</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_5_1" class="clue_text">San Francisco paper which owns TV station KRON</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"><i>The Dick Van Dyke Show</i></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', 'Only sitcom in which Mary Tyler Moore starred playing a mother')" 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=71619" title="Suggest a correction for this clue" rel="nofollow">18</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_6_1" class="clue_text">Only sitcom in which Mary Tyler Moore starred playing a mother</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_1_2', 'clue_DJ_1_2_stuck', '(Bob: Who is Hirohito?)<br /><br /><em class="correct_response">Tojo</em><br /><br /><table width="100%"><tr><td class="right">Eileen</td><td class="wrong">Bob</td></tr></table>')" onmouseout="toggle('clue_DJ_1_2', 'clue_DJ_1_2_stuck', 'He became premier of Japan 2 months before Pearl Harbor')" 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=71598" title="Suggest a correction for this clue" rel="nofollow">11</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_2" class="clue_text">He became premier of Japan 2 months before Pearl Harbor</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">MTV</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_DJ_2_2', 'clue_DJ_2_2_stuck', 'It started coming down the cable at one minute after midnight, August 1, 1981')" 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=71603" title="Suggest a correction for this clue" rel="nofollow">22</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_2" class="clue_text">It started coming down the cable at one minute after midnight, August 1, 1981</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">Ruth</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_DJ_3_2', 'clue_DJ_3_2_stuck', 'Naomi\'s daughter-in-law, she not only gleaned Boaz\'s wheat, she married him')" 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=71606" 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">Naomi's daughter-in-law, she not only gleaned Boaz's wheat, she married him</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">the running long-jump</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_4_2', 'clue_DJ_4_2_stuck', 'It\'s said after Bob Beamon\'s 1968 world record, a competitor remarked, "You have destroyed this event"')" 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=71611" title="Suggest a correction for this clue" rel="nofollow">14</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_2" class="clue_text">It's said after Bob Beamon's 1968 world record, a competitor remarked, "You have destroyed this event"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_2', 'clue_DJ_5_2_stuck', '<em class="correct_response">China</em><br /><br /><table width="100%"><tr><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_DJ_5_2', 'clue_DJ_5_2_stuck', 'People\'s Almanac describes the People\'s Daily as "the ultimate voice of authority" in this country')" 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">$400</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71616" title="Suggest a correction for this clue" rel="nofollow">9</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_5_2" class="clue_text">People's Almanac describes the People's Daily as "the ultimate voice of authority" in this country</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">(<i>The</i>) <i>Tomorrow</i> (<i>Show</i>)</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_DJ_6_2', 'clue_DJ_6_2_stuck', '"Timely" show which followed "The Tonight Show" for the 1st time Oct. 15, 1973 & the last time Jan. 28, 1982')" 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=71620" title="Suggest a correction for this clue" rel="nofollow">19</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_6_2" class="clue_text">"Timely" show which followed "The Tonight Show" for the 1st time Oct. 15, 1973 & the last time Jan. 28, 1982</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_1_3', 'clue_DJ_1_3_stuck', '(Richard: What is treason or desertion?)<br />...<br />(Alex: [*] only, he was not shot for treason.)<br /><br /><em class="correct_response">desertion</em><br /><br /><table width="100%"><tr><td class="wrong">Richard</td><td class="right">Eileen</td></tr></table>')" onmouseout="toggle('clue_DJ_1_3', 'clue_DJ_1_3_stuck', 'Pvt. Eddie Slovik was the only American since the Civil War to be shot for this reason')" 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=71599" title="Suggest a correction for this clue" rel="nofollow">7</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_3" class="clue_text">Pvt. Eddie Slovik was the only American since the Civil War to be shot for this reason</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_2_3', 'clue_DJ_2_3_stuck', '<em class="correct_response">MCA</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_DJ_2_3', 'clue_DJ_2_3_stuck', 'ABC Records, UNI, Impulse!, Decca, Kapp, Coral & Blue Thumb have all been taken over by this label')" onclick="togglestick('clue_DJ_2_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_2_3_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$600</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71604" title="Suggest a correction for this clue" rel="nofollow">23</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_3" class="clue_text">ABC Records, UNI, Impulse!, Decca, Kapp, Coral & Blue Thumb have all been taken over by this label</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_3_3', 'clue_DJ_3_3_stuck', '<em class="correct_response">their spears</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_DJ_3_3', 'clue_DJ_3_3_stuck', 'In the King James Bible, "They shall beat their swords into plowshares &" these "into pruninghooks"')" 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=71607" 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">In the King James Bible, "They shall beat their swords into plowshares &" these "into pruninghooks"</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_4_3', 'clue_DJ_4_3_stuck', '(Alex: [*], they guaranteed a victory.)<br /><br /><em class="correct_response">Greece</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_4_3', 'clue_DJ_4_3_stuck', 'In 1896 games, only men in the navy of this host country could enter the 100m freestyle for sailors')" 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=71612" title="Suggest a correction for this clue" rel="nofollow">15</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_3" class="clue_text">In 1896 games, only men in the navy of this host country could enter the 100m freestyle for sailors</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_3', 'clue_DJ_5_3_stuck', '(Richard: Who are lawyers?)<br /><br /><em class="correct_response">blacks</em><br /><br /><table width="100%"><tr><td class="wrong">Richard</td><td class="right">Bob</td></tr></table>')" onmouseout="toggle('clue_DJ_5_3', 'clue_DJ_5_3_stuck', 'The Chicago Daily Defender & L.A. Sentinel are aimed primarily at these readers')" onclick="togglestick('clue_DJ_5_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_5_3_stuck" class="clue_unstuck">   </td>