-
Notifications
You must be signed in to change notification settings - Fork 2
/
618.html
1336 lines (1308 loc) · 69.9 KB
/
618.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 #618, aired 1987-04-22</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 Scott Myers Marian Evans Melnick Richard Cordray Final clue response question answer Daily Double" /><meta name="description" content="An archive of clues and players for Jeopardy! show #618." />
</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 #618 - Wednesday, April 22, 1987</h1></div>
<div id="game_comments">Richard Cordray game 2.</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=1335">[<< previous game]</a>
</td>
<td>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2719" rel="external">Scott Myers</a>, a teacher from Covina, California</p>
<p class="contestants"><a href="http://www.j-archive.com/showplayer.php?player_id=2720" rel="external">Marian Evans Melnick</a>, a former bank manager originally from New York City</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 1-day cash winnings total $7,800)</p>
</td>
<td align="right" valign="middle" style="width:150px">
<a href="showgame.php?game_id=1337">[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">U.S. STATES</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">PLANTS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">NAME'S THE SAME</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">INDIANS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">TECHNOLOGY</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">SILLY SONGS</td></tr>
<tr><td class="category_comments">(Alex: And finally, a new category for us, [*], and I say new because all of the material in this category was written or co-written by a man who specializes in silly songs, Jeff Barry.)</td></tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_1', 'clue_J_1_1_stuck', '[Alex pronounces the initial in the clue as "Simon."]<br /><br /><em class="correct_response">Utah</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', 'In 1916, S. Bamberger, a Jewish Democrat, was elected this state\'s 1st non-Mormon governor')" 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=71231" title="Suggest a correction for this clue" rel="nofollow">6</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_1" class="clue_text">In 1916, S. Bamberger, a Jewish Democrat, was elected this state's 1st non-Mormon governor</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_1', 'clue_J_2_1_stuck', '(Marian: What is lettuce?)<br /><br /><em class="correct_response">the fern</em><br /><br /><table width="100%"><tr><td class="wrong">Marian</td><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_2_1', 'clue_J_2_1_stuck', 'Among the best known of this type of plant are the brake & Boston')" onclick="togglestick('clue_J_2_1_stuck')">
<table class="clue_header">
<tr>
<td id="clue_J_2_1_stuck" class="clue_unstuck">   </td>
<td class="clue_value">$100</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71243" title="Suggest a correction for this clue" rel="nofollow">20</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_1" class="clue_text">Among the best known of this type of plant are the brake & Boston</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_1', 'clue_J_3_1_stuck', '[Alex pronounces the initial in the clue as "Jeanette."]<br /><br /><em class="correct_response">Rose Marie</em><br /><br /><table width="100%"><tr><td class="right">Marian</td></tr></table>')" onmouseout="toggle('clue_J_3_1', 'clue_J_3_1_stuck', 'J. MacDonald heroine who always got her mountie, or "Dick Van Dyke Show"s Sally who seldom got her man')" 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=71235" title="Suggest a correction for this clue" rel="nofollow">5</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_1" class="clue_text">J. MacDonald heroine who always got her mountie, or "Dick Van Dyke Show"s Sally who seldom got her man</td>
</tr>
</table>
</td>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_1', 'clue_J_5_1_stuck', '<em class="correct_response">time</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_5_1', 'clue_J_5_1_stuck', 'Le Bureau International de l\'Heure in Paris is the keeper of this for the world')" 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=71239" title="Suggest a correction for this clue" rel="nofollow">8</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_1" class="clue_text">Le Bureau International de l'Heure in Paris is the keeper of this for the world</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_6_1', 'clue_J_6_1_stuck', '(Alex: Yep, that\'s a good silly song.)<br /><br /><em class="correct_response">Da do ron-ron-ron, da do ron-ron</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_6_1', 'clue_J_6_1_stuck', 'Follows "I met him on a Monday & my heart stood still"')" 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=71240" title="Suggest a correction for this clue" rel="nofollow">9</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_1" class="clue_text">Follows "I met him on a Monday & my heart stood still"</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">Ohio</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', 'Though the Pro Football Hall of Fame is in this state, the state beverage is tomato juice, not beer')" 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=71242" title="Suggest a correction for this clue" rel="nofollow">12</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_2" class="clue_text">Though the Pro Football Hall of Fame is in this state, the state beverage is tomato juice, not beer</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">the palm tree</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_2_2', 'clue_J_2_2_stuck', 'Tree named for the resemblance of its leaves to the outspread human hand')" 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=71244" 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">Tree named for the resemblance of its leaves to the outspread human hand</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">Bill Russell</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_3_2', 'clue_J_3_2_stuck', 'A Boston Celtics Hall of Famer, or a recently retired Dodgers shortstop')" 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=71236" title="Suggest a correction for this clue" rel="nofollow">4</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_2" class="clue_text">A Boston Celtics Hall of Famer, or a recently retired Dodgers shortstop</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', '(Scott: What is 8... million, eight hundred and eighty-eight thousand, eight hundred and eighty-eight?)<br />(Alex: No, sorry. Richard or Marian? Marian?)<br />(Marian: What is 9?)<br />(Alex: No. Richard doesn\'t want to try it? Scott, you were on the right track. If you had stopped after the first 8... There are 7 aspects to each LED readout. When they\'re all on, you see the number 8. That\'s why we couldn\'t give it to you. You select again, however.)<br /><br /><em class="correct_response">8</em><br /><br /><table width="100%"><tr><td class="wrong">Marian</td><td class="wrong">Scott</td></tr></table><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_5_2', 'clue_J_5_2_stuck', 'On a single digit LED readout, number shown when all 7 LEDs are lit')" 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=71252" title="Suggest a correction for this clue" rel="nofollow">17</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_2" class="clue_text">On a single digit LED readout, number shown when all 7 LEDs are lit</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">the Hanky Panky</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_6_2', 'clue_J_6_2_stuck', 'In 1966 #1 hit by Tommy James & The Shondells, it\'s what "my baby does"')" 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=71241" title="Suggest a correction for this clue" rel="nofollow">10</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_6_2" class="clue_text">In 1966 #1 hit by Tommy James & The Shondells, it's what "my baby does"</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">West Virginia (or Kentucky or North Carolina)</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_1_3', 'clue_J_1_3_stuck', '1 of 3 states which border Virginia & share its state bird, the Cardinal')" 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=71232" title="Suggest a correction for this clue" rel="nofollow">1</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_3" class="clue_text">1 of 3 states which border Virginia & share its state bird, the Cardinal</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">the seed</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_2_3', 'clue_J_2_3_stuck', 'On milkweed & dandelions, each one comes with its own "parachute"')" 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=71245" title="Suggest a correction for this clue" rel="nofollow">14</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_3" class="clue_text">On milkweed & dandelions, each one comes with its own "parachute"</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">"Satin Doll"</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', 'Paula Kelly\'s role in "Jo Jo Dancer", or <a href="http://www.j-archive.com/media/1987-04-22_J_13.mp3">this</a> Duke Ellington classic:')" 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_daily_double">DD: $300</td>
<td class="clue_order_number"><a href="suggestcorrection.php?clue_id=71248" title="Suggest a correction for this clue" rel="nofollow">13</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_3" class="clue_text">Paula Kelly's role in "Jo Jo Dancer", or <a href="http://www.j-archive.com/media/1987-04-22_J_13.mp3">this</a> Duke Ellington classic:</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_3', 'clue_J_4_3_stuck', '<em class="correct_response">tobacco</em><br /><br /><table width="100%"><tr><td class="right">Marian</td></tr></table>')" onmouseout="toggle('clue_J_4_3', 'clue_J_4_3_stuck', 'The Powhatan Indians of Virginia called this crop "apooke"')" 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=71249" title="Suggest a correction for this clue" rel="nofollow">19</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_3" class="clue_text">The Powhatan Indians of Virginia called this crop "apooke"</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">silicon</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_5_3', 'clue_J_5_3_stuck', 'Replacing germanium with this in transistors got a California "Valley" named after it')" 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=71253" title="Suggest a correction for this clue" rel="nofollow">18</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_3" class="clue_text">Replacing germanium with this in transistors got a California "Valley" named after it</td>
</tr>
</table>
</td>
<td class="clue">
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_1_4', 'clue_J_1_4_stuck', '<em class="correct_response">Missouri</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_J_1_4', 'clue_J_1_4_stuck', 'Mark Twain said he was born in this state because "it was an unknown new state & needed attractions"')" 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=71233" title="Suggest a correction for this clue" rel="nofollow">11</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_4" class="clue_text">Mark Twain said he was born in this state because "it was an unknown new state & needed attractions"</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">replanting (or repotting)</em><br /><br /><table width="100%"><tr><td class="right">Marian</td></tr></table>')" onmouseout="toggle('clue_J_2_4', 'clue_J_2_4_stuck', 'Generally, it should be done every 2 years or when the roots stick out from the bottom')" 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=71246" title="Suggest a correction for this clue" rel="nofollow">23</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_4" class="clue_text">Generally, it should be done every 2 years or when the roots stick out from the bottom</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">Vernon Castle</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', 'Horse who danced away with 1986 Calif. derby, or aviator who danced away with Irene Castle')" 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=71237" title="Suggest a correction for this clue" rel="nofollow">2</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_4" class="clue_text">Horse who danced away with 1986 Calif. derby, or aviator who danced away with Irene Castle</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_4', 'clue_J_4_4_stuck', '<em class="correct_response">the Hopi Indians</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_4_4', 'clue_J_4_4_stuck', 'Though their name means the "peaceful ones", they have long-standing land disputes with the Navajo')" 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=71250" title="Suggest a correction for this clue" rel="nofollow">15</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_4" class="clue_text">Though their name means the "peaceful ones", they have long-standing land disputes with the Navajo</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">Dr. Scholl</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_5_4', 'clue_J_5_4_stuck', 'In 1904, this ex-shoe salesman & Illinois medical school graduate patented his arch support')" 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=71254" title="Suggest a correction for this clue" rel="nofollow">24</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_4" class="clue_text">In 1904, this ex-shoe salesman & Illinois medical school graduate patented his arch support</td>
</tr>
</table>
</td>
<td class="clue">
</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 Confederate flag (the Stars & Bars)</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_1_5', 'clue_J_1_5_stuck', 'From 1961-1976, Alabama flew this flag above the U.S. flag on the State Capitol')" 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=71234" title="Suggest a correction for this clue" rel="nofollow">3</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_1_5" class="clue_text">From 1961-1976, Alabama flew this flag above the U.S. flag on the State Capitol</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_2_5', 'clue_J_2_5_stuck', '(Richard: What is oxygen?)<br />...<br />(Alex: Yes, the plant <i>produces</i> oxygen.)<br /><br /><em class="correct_response">carbon dioxide</em><br /><br /><table width="100%"><tr><td class="wrong">Richard</td><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_J_2_5', 'clue_J_2_5_stuck', 'The raw materials required for photosynthesis are water & this gas')" 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=71247" title="Suggest a correction for this clue" rel="nofollow">16</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_2_5" class="clue_text">The raw materials required for photosynthesis are water & this gas</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_3_5', 'clue_J_3_5_stuck', '(Scott: Uh, what is Spencer?)<br />(Alex: Be more specifc. Need the whole name.)<br />(Scott: What is Diane Spencer.)<br />(Alex: No. Richard or Marian? Marian?)<br />(Marian: What is Diana Spencer?)<br />(Alex: No. ...Can we accept that? ...We don\'t need the "Lady" on it?)<br />(Judge: No.)<br />(Alex: It\'s all right? We do need the "Lady.")<br />(Judge: No we don\'t.)<br />(Alex: We don\'t need the "Lady." All right, Marian, that\'s a correct for you, go ahead.)<br /><br /><em class="correct_response">(Lady) Diana Spencer</em><br /><br /><table width="100%"><tr><td class="right">Marian</td><td class="wrong">Scott</td></tr></table>')" onmouseout="toggle('clue_J_3_5', 'clue_J_3_5_stuck', 'Maiden name of current princess of Wales & the Lady who almost became one in 1736')" 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=71238" title="Suggest a correction for this clue" rel="nofollow">7</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_3_5" class="clue_text">Maiden name of current princess of Wales & the Lady who almost became one in 1736</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_4_5', 'clue_J_4_5_stuck', '(Alex: They were the guards who shot [*].)<br /><br /><em class="correct_response">Sitting Bull</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_4_5', 'clue_J_4_5_stuck', 'The Indian policemen who killed this legendary chief Dec. 15, 1890 were named Tomahawk & Bullhead')" 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=71251" title="Suggest a correction for this clue" rel="nofollow">22</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_4_5" class="clue_text">The Indian policemen who killed this legendary chief Dec. 15, 1890 were named Tomahawk & Bullhead</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_J_5_5', 'clue_J_5_5_stuck', '<em class="correct_response">propellant</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_J_5_5', 'clue_J_5_5_stuck', 'Term for any gas that pressurizes the liquid in an aerosol can')" 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=71255" title="Suggest a correction for this clue" rel="nofollow">25</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_J_5_5" class="clue_text">Term for any gas that pressurizes the liquid in an aerosol can</td>
</tr>
</table>
</td>
<td class="clue">
</td>
</tr>
</table>
<h3>Scores at the first commercial break (after clue 11):</h3>
<table>
<tr>
<td class="score_player_nickname">Richard</td>
<td class="score_player_nickname">Marian</td>
<td class="score_player_nickname">Scott</td>
</tr>
<tr>
<td class="score_positive">$1,000</td>
<td class="score_positive">$600</td>
<td class="score_positive">$400</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">Marian</td>
<td class="score_player_nickname">Scott</td>
</tr>
<tr>
<td class="score_positive">$1,800</td>
<td class="score_positive">$1,000</td>
<td class="score_positive">$1,200</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">1946</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">MAMMALS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">TV CAPTAINS</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">FIRST LADIES</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">SHAKESPEAREAN TRIVIA</td></tr>
<tr><td class="category_comments"></td></tr>
</table>
</td>
<td class="category">
<table>
<tr><td class="category_name">HOMOPHONIC PAIRS</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"><i>Annie Get Your Gun</i></em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_1_1', 'clue_DJ_1_1_stuck', 'Irving Berlin\'s 1946 musical that featured a rifle-totin\' Ethel Merman')" 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=71256" 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">Irving Berlin's 1946 musical that featured a rifle-totin' Ethel Merman</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_2_1', 'clue_DJ_2_1_stuck', '(Marian: What are males?)<br />(Alex: No, sorry. Scott.)<br />(Scott: What are [*]?)<br />(Alex: Yes, here\'s where you got it back from Marian for what happened a little while ago. Select again.)<br /><br /><em class="correct_response">females</em><br /><br /><table width="100%"><tr><td class="wrong">Marian</td><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_2_1', 'clue_DJ_2_1_stuck', 'Among blue whales, the largest animal ever on Earth, this sex is larger')" 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=71259" title="Suggest a correction for this clue" rel="nofollow">16</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_1" class="clue_text">Among blue whales, the largest animal ever on Earth, this sex is larger</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 French Foreign Legion</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', 'Captain Gallant\'s fighting force, called the Legion Etrangere')" 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=71264" title="Suggest a correction for this clue" rel="nofollow">17</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_1" class="clue_text">Captain Gallant's fighting force, called the Legion Etrangere</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">Rosalynn Carter</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_4_1', 'clue_DJ_4_1_stuck', 'The book "The Presidents: Tidbits & Trivia" includes this first lady\'s recipe for peanut soup')" 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=71267" title="Suggest a correction for this clue" rel="nofollow">7</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_1" class="clue_text">The book "The Presidents: Tidbits & Trivia" includes this first lady's recipe for peanut soup</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_1', 'clue_DJ_5_1_stuck', '(Scott: Uh, who is Juliet?)<br /><br /><em class="correct_response">Romeo</em><br /><br /><table width="100%"><tr><td class="right">Marian</td><td class="wrong">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_5_1', 'clue_DJ_5_1_stuck', 'Of Romeo or Juliet, the 1 who has more lines')" 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=71272" title="Suggest a correction for this clue" rel="nofollow">2</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_5_1" class="clue_text">Of Romeo or Juliet, the 1 who has more lines</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">eight ate</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_6_1', 'clue_DJ_6_1_stuck', 'What happened when four couples got together & dined')" 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=71277" title="Suggest a correction for this clue" rel="nofollow">1</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_6_1" class="clue_text">What happened when four couples got together & dined</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_1_2', 'clue_DJ_1_2_stuck', '(Alex: This is a bit of guesswork, or figuring it out. [*]--they were all coming back from the war. Richard, select again.)<br />[The end-of-round signal sounds]<br /><br /><em class="correct_response">75%</em><br /><br /><table width="100%"><tr><td class="wrong">Triple Stumper</td></tr></table>')" onmouseout="toggle('clue_DJ_1_2', 'clue_DJ_1_2_stuck', 'Of 25%, 50%, or 75%, the percentage of veterans in the Sept. 1946 enrollment at Harvard')" 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=71257" title="Suggest a correction for this clue" rel="nofollow">26</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_1_2" class="clue_text">Of 25%, 50%, or 75%, the percentage of veterans in the Sept. 1946 enrollment at Harvard</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_2_2', 'clue_DJ_2_2_stuck', '(Alex: Yes, it has twice the protein of cow\'s milk--and dog\'s milk doesn\'t even figure in there.)<br /><br /><em class="correct_response">cat milk</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_2_2', 'clue_DJ_2_2_stuck', 'Of cat, cow or dog milk, the one highest in protein')" 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=71260" title="Suggest a correction for this clue" rel="nofollow">20</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_2" class="clue_text">Of cat, cow or dog milk, the one highest in protein</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">Capt. (Frank) Furillo</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_3_2', 'clue_DJ_3_2_stuck', 'With nary a word of warning to his ex, Faye, this Hill Street captain wed Joyce Davenport')" 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=71265" title="Suggest a correction for this clue" rel="nofollow">22</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_2" class="clue_text">With nary a word of warning to his ex, Faye, this Hill Street captain wed Joyce Davenport</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">free postage</em><br /><br /><table width="100%"><tr><td class="right">Marian</td></tr></table>')" onmouseout="toggle('clue_DJ_4_2', 'clue_DJ_4_2_stuck', 'Congress has granted all widowed 1st ladies franking privilege, which entitles them to this')" 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=71268" title="Suggest a correction for this clue" rel="nofollow">21</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_2" class="clue_text">Congress has granted all widowed 1st ladies franking privilege, which entitles them to this</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_2', 'clue_DJ_5_2_stuck', '(Scott: What is a Scottie?)<br />...<br />(Alex: Yes, Hamlet, the Danish prince.)<br /><br /><em class="correct_response">a Great Dane</em><br /><br /><table width="100%"><tr><td class="right">Marian</td><td class="wrong">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_5_2', 'clue_DJ_5_2_stuck', 'In "The 9th Configuration", Jason Miller planned to coach this apt breed of dog to play Hamlet')" 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=71273" title="Suggest a correction for this clue" rel="nofollow">3</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_5_2" class="clue_text">In "The 9th Configuration", Jason Miller planned to coach this apt breed of dog to play Hamlet</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">Gene\'s jeans</em><br /><br /><table width="100%"><tr><td class="right">Marian</td></tr></table>')" onmouseout="toggle('clue_DJ_6_2', 'clue_DJ_6_2_stuck', 'Game show host Rayburn\'s Levis')" 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=71278" title="Suggest a correction for this clue" rel="nofollow">9</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_6_2" class="clue_text">Game show host Rayburn's Levis</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="clue">
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_2_3', 'clue_DJ_2_3_stuck', '<em class="correct_response">reptiles</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_2_3', 'clue_DJ_2_3_stuck', 'About 180 million years ago, mammals evolved from this class, named from Latin for "creeping"')" 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=71261" title="Suggest a correction for this clue" rel="nofollow">13</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_2_3" class="clue_text">About 180 million years ago, mammals evolved from this class, named from Latin for "creeping"</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">Capt. Kirk</em><br /><br /><table width="100%"><tr><td class="right">Richard</td></tr></table>')" onmouseout="toggle('clue_DJ_3_3', 'clue_DJ_3_3_stuck', 'Captain Pike was in the pilot, but this captain replaced him in the series')" 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=71266" title="Suggest a correction for this clue" rel="nofollow">23</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_3_3" class="clue_text">Captain Pike was in the pilot, but this captain replaced him in the series</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">Lady Bird Johnson</em><br /><br /><table width="100%"><tr><td class="right">Marian</td></tr></table>')" onmouseout="toggle('clue_DJ_4_3', 'clue_DJ_4_3_stuck', 'First lady known for promoting highway beautification projects')" 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=71269" title="Suggest a correction for this clue" rel="nofollow">6</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td id="clue_DJ_4_3" class="clue_text">First lady known for promoting highway beautification projects</td>
</tr>
</table>
</td>
<td class="clue">
<table>
<tr>
<td>
<div onmouseover="toggle('clue_DJ_5_3', 'clue_DJ_5_3_stuck', '<em class="correct_response">(Akira) Kurosawa</em><br /><br /><table width="100%"><tr><td class="right">Scott</td></tr></table>')" onmouseout="toggle('clue_DJ_5_3', 'clue_DJ_5_3_stuck', 'His "Throne of Blood" turned "Macbeth" Japanese; later he interpreted "King Lear" as "Ran"')" onclick="togglestick('clue_DJ_5_3_stuck')">
<table class="clue_header">
<tr>
<td id="clue_DJ_5_3_stuck" class="clue_unstuck">   </td>