-
Notifications
You must be signed in to change notification settings - Fork 4
/
s1-overlay3.html
1037 lines (990 loc) · 63.5 KB
/
s1-overlay3.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>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Georgia Tech + Open Academic Environment</title>
<link rel="stylesheet" type="text/css" href="lib/jquery.autosuggest/autoSuggest.css">
<link rel="stylesheet" type="text/css" href="css/screen.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic&subset=latin,cyrillic-ext,greek-ext' rel='stylesheet' type='text/css'>
<script src="lib/jquery-1.8.2.js"></script>
<script src="lib/jquery.autosuggest/jquery.autoSuggest.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<!-- Guide main overlay / screen 3 -->
<div class="overlay_window"></div>
<div class="overlay_container" id="white">
<a href="s1-overlay4.html">
<img src="images/s1-images/overlay3_dummy.png" class="overlay2_dummy"/>
</a>
<a href="#" class="gt-force-left">Basic search</a>
<a href="s1-06.html"><button type="button" class="gt-force-right gt-button gt-black-button">Start searching</button></a>
</div>
<div id="gt-page-container">
<div id="gt-topnavigation-container">
<div id="gt-topnavigation-left">
<ul>
<li>
<a href="#" title="Dashboard" id="topnavigation_home">
<div class="gt-home-icon"></div>
</a>
</li>
<li>
<a href="#" title="Messages" id="topnavigation_inbox">
<div class="gt-inbox-icon"></div>
</a>
</li>
<li>
<a href="#" title="Tasks" id="topnavigation_task">
<div class="gt-task-icon"></div>
</a>
</li>
<li>
<a href="#" title="Collections" id="topnavigation_library">
<div class="gt-library-icon"></div>
</a>
</li>
</ul>
</div>
<div id="gt-topnavigation-right">
<a href="#" title="Account settings" id="topnavigation_settings" class="gt-force-right">
<div class="gt-cogwheel-icon"></div>
</a>
<form id="topnavigation_search_form" class="gt-force-right">
<input type="text" id="topnavigation_search_input" class="gt-force-right"/>
</form>
<div id="topnavigation_search_results_container" style="display: none;">
<div id="topnavigation_search_results_top">
<div class="gt-force-right" style="display: none;">
<img src="images/switch-off.png" class="gt-force-right research_assistance_switch" style="display: none;"/>
<img src="images/switch-on.png" class="gt-force-right research_assistance_switch"/>
<div class="gt-force-left">Research assistance</div>
</div>
<img src="images/gt-search-icon.png" class="gt-force-left"/>
</div>
<div id="topnavigation_search_results_results">
<div id="research-assistance-off">
<h2>Documents, files and links</h2>
<ul>
<li>
<img src="images/dummy_content/activity-item5-collection-item1.png" class="gt-force-left"/>
<div>Detection of pathogenic ... body fluids</div>
</li>
<li>
<img src="images/dummy_content/activity-item5-collection-item2.png" class="gt-force-left"/>
<div>Development of a DNA ... water</div>
</li>
<li>
<img src="images/dummy_content/activity-item5-collection-item3.png" class="gt-force-left"/>
<div>Waterborne Pathogens: Bacteria</div>
</li>
</ul>
<h2>Collections</h2>
<ul>
<li>
<img src="images/dummy_content/activity-item5-collection-item1.png" class="gt-force-left"/>
<div>Research on water testing</div>
</li>
<li>
<img src="images/dummy_content/activity-item5-collection-item4.png" class="gt-force-left"/>
<div>Labs that test water ... analysis</div>
</li>
<li>
<img src="images/dummy_content/activity-item5-collection-item5.png" class="gt-force-left"/>
<div>Luminescent Bacteria</div>
</li>
</ul>
<h2>People</h2>
<ul>
<li>
<img src="images/dummy_users/profile-pic-john.png" class="gt-force-left"/>
<div>John Librarian</div>
</li>
<li>
<img src="images/dummy_users/profile-pic-mark.png" class="gt-force-left"/>
<div>Don Herbert</div>
</li>
<li>
<img src="images/dummy_users/profile-pic-stanley.png" class="gt-force-left"/>
<div>Don Reach</div>
</li>
</ul>
<h2>Projects</h2>
<ul>
<li>
<img src="images/dummy_content/activity-item5-collection-item2.png" class="gt-force-left"/>
<div>Water Testing</div>
</li>
<li>
<img src="images/dummy_content/grid-view-profile-pic-cell-reproduction.png" class="gt-force-left"/>
<div>Unique Bioterror Screening</div>
</li>
<li>
<img src="images/dummy_content/activity-item5-collection-item5.png" class="gt-force-left"/>
<div>1000 Genomes</div>
</li>
</ul>
<h2>Courses</h2>
<ul>
<li>
<img src="images/dummy_content/activity-item5-collection-item2.png" class="gt-force-left"/>
<div>BIOL 4620 Aquatic Chemical Ecology</div>
</li>
<li>
<img src="images/dummy_content/grid-view-profile-pic-cell-reproduction.png" class="gt-force-left"/>
<div>BIOL 3451 Cell and Molecular Biology</div>
</li>
<li>
<img src="images/dummy_content/activity-item5-collection-item5.png" class="gt-force-left"/>
<div>CHEM 4512 Biochemistry II</div>
</li>
</ul>
</div>
<div id="research-assistance-on" style="display: none;">
<h2>Research materials</h2>
<div>
<input type="checkbox" id="search_journal_articles">
<label for="search_journal_articles">Journal articles</label>
</div>
<div>
<input type="checkbox" id="search_peer_reviewed">
<label for="search_peer_reviewed">Peer-reviewed articles</label>
</div>
<div>
<input type="checkbox" id="search_videos">
<label for="search_videos">Videos</label>
</div>
<div>
<input type="checkbox" id="search_websites">
<label for="search_websites">Websites</label>
</div>
<a href="#" title="More research materials">More</a>
<h2>Tutorials</h2>
<div>
<input type="checkbox" id="search_journal_articles">
<label for="search_journal_articles">Journal articles</label>
</div>
<div>
<input type="checkbox" id="search_peer_reviewed">
<label for="search_peer_reviewed">Peer-reviewed articles</label>
</div>
<div>
<input type="checkbox" id="search_videos">
<label for="search_videos">Videos</label>
</div>
<div>
<input type="checkbox" id="search_websites">
<label for="search_websites">Websites</label>
</div>
</div>
</div>
<div id="topnavigation_search_results_bottom">
<a href="#"><button type="button" class="gt-button gt-overlay-button gt-force-right">See all</button></a>
<div class="gt-force-left">16 of 134 search results</div>
</div>
</div>
<a href="#" id="topnavigation-explore-link" class="gt-force-right">Explore</a>
</div>
<div id="gt-topnavigation-center"></div>
</div>
<div id="gt-lhnav-container">
<a href="#" title="Sarah's Dashboard"><img id="profile-image" src="images/profile-pic-sarah.png" alt="Sarah First"/></a>
<ul id="mini-left-nav">
<li><a href="1column.html" title="Sarah's Discussions" id="discussions"></a></li>
<li><a href="#" title="Sarah's Collections" id="collections"></a></li>
<li><a href="#" title="Sarah's Tasks" id="tasks"></a></li>
<li><a href="#" title="Sarah's Courses" id="courses"></a></li>
<li><a href="#" title="Sarah's Groups" id="groups"></a></li>
<li><a href="#" title="Sarah's Projects" id="projects"></a></li>
<li><a href="#" title="Sarah's Network" id="network"></a></li>
<li><a href="#" title="Sarah's Archive" id="archive"></a></li>
</ul>
</div>
<div id="gt-content-container">
<div class="gt-title-clip" id="search-box">
<div class="gt-title-clip-right"></div>
<div class="gt-title-clip-left"></div>
<h1>Research results</h1>
<form id="search-keywords">
<div id="search-bar">
<input type="text" value="Identification of bacteria in streams"></input>
<ul class="as-selections">
<li class="as-selection-item">
<a><div id="delete-tag"></div></a>
<div class="autosuggest_term">Pathogen</div>
</li>
</ul>
</div>
</form>
</div>
<a title="Ask a question" class="questions" href="javascript:;">
<div class="gt-action-clip-primary">
<div class="action-clip-right"></div>
<div class="action-clip-left"></div>
<div class="action-icon" id="ask-question">Ask a question</div>
</div>
</a>
<div class="gt-content-column">
<h2>Research materials</h2>
<div>
<input type="checkbox" id="rm_everything"/>
<label for="rm_everything">Everything</label>
</div>
<div>
<input type="checkbox" id="rm_journalarticles"/>
<label for="rm_journalarticles">Journal articles</label>
</div>
<div>
<input type="checkbox" id="rm_books"/>
<label for="rm_books">Books</label>
</div>
<div>
<input type="checkbox" id="rm_conferenceproceedings"/>
<label for="rm_conferenceproceedings">Conference proceedings</label>
</div>
<div>
<input type="checkbox" id="rm_video"/>
<label for="rm_video">Video</label>
</div>
<div>
<input type="checkbox" id="rm_statisticalinformation"/>
<label for="rm_statisticalinformation">Statistical information</label>
</div>
<div>
<input type="checkbox" id="rm_websites"/>
<label for="rm_websites">Websites</label>
</div>
<h2>Suggested terms</h2>
<div id="suggested-terms">
<ul class="as-selections">
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Pathogen</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">River</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Water</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Streams</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Virus</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Harmful</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Bacteria</div>
</li>
<li class="as-selection-item">
<a><div id="add-tag"></div></a>
<div class="autosuggest_term">Germ</div>
</li>
</ul>
</div>
</div>
<div class="gt-content-column" id="gt-center-column">
<div class="center_panel">
<div class="center-panel-inner">
<div style="display: none; margin-bottom: 0;">
<div class="gt-force-right action_button">
<input type="text" placeholder="Narrow by keyword" class="refine_search"/>
<div class="gt-force-right" id="display-toggle">
<ul>
<li id="list"><a href="#" class="list-off"></a></li>
<li id="thumb"><a href="#" class="thumb-off"></a></li>
<li id="grid"><a href="#" class="grid-on"></a></li>
</ul>
</div>
<span class="gt-force-right" id="panel_sort_by">Sort by</span>
</div>
<h2 class="panel_header">Results <span class="gt-counts-container">86</span></h2>
<div id="select-all"><input type="checkbox"/></div>
<div class="action_button share fixed_width">
<div class="share-black-icon gt-force-left"></div>
<span>Share + add</span>
</div>
</div>
<img src="images/list-options-shadow-search.png"/>
<a href="" title="Close list options" id="research-results-1"><div id="grabber-list-options"></div></a>
<div class="center-panel-closed">
<h2 class="panel_header">Results <span class="gt-counts-container">86</span></h2>
<a href="#" title="Sort this list by where it's all been found from"><img src="images/switch-off.png" alt="Sort this list by where it's all been found from" /></a>
<h3>Sort by source</h3>
</div>
</div>
</div>
<div id="gt-search-results">
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Detection of pathogenic</a>
<div id="type-add-share">PPT<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Detection of pathogenic organisms in food, water, and body fluids">
<img id="grid-view-preview" src="images/s1-images/result-01-thumb-preview.png" alt="Detection of pathogenic organisms in food, water, and body fluids" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Development of a DNA microarray for detection ... ten other pathogens in drinking water</a>
<div id="type-add-share">Journal article<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Development of a DNA microarray for detection and identification of Legionella pneumophila and ten other pathogens in drinking water">
<img id="grid-view-preview" src="images/s1-images/result-02-thumb-preview.png" alt="Development of a DNA microarray for detection and identification of Legionella pneumophila and ten other pathogens in drinking water" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Waterborne Pathogens: Bacteria</a>
<div id="type-add-share">PPT<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Waterborne Pathogens: Bacteria">
<img id="grid-view-preview" src="images/s1-images/result-03-thumb-preview.png" alt="Waterborne Pathogens: Bacteria" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Culturable and non-culturable fractions of bacterial populations in sediments of a South Carolina stream</a>
<div id="type-add-share">Journal article<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Culturable and non-culturable fractions of bacterial populations in sediments of a South Carolina stream">
<img id="grid-view-preview" src="images/s1-images/result-04-thumb-preview.png" alt="Culturable and non-culturable fractions of bacterial populations in sediments of a South Carolina stream" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">An analysis of wilderness water in ... parks for coliform and pathologic bacteria</a>
<div id="type-add-share">Journal article<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="An analysis of wilderness water in Kings Canyon, Sequoia, and Yosemite national parks for coliform and pathologic bacteria">
<img id="grid-view-preview" src="images/s1-images/result-05-thumb-preview.png" alt="An analysis of wilderness water in Kings Canyon, Sequoia, and Yosemite national parks for coliform and pathologic bacteria" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Occurrence of fecal-indicator bacteria and ... Brandywine Creek, Chester County, Pennsylvania</a>
<div id="type-add-share">PDF<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Occurrence of fecal-indicator bacteria and protocols for identification of fecal-contamination sources in selected reaches of the West Branch Brandywine Creek, Chester County, Pennsylvania">
<img id="grid-view-preview" src="images/s1-images/result-06-thumb-preview.png" alt="Occurrence of fecal-indicator bacteria and protocols for identification of fecal-contamination sources in selected reaches of the West Branch Brandywine Creek, Chester County, Pennsylvania" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Identification of Fecal Input Sites in Spring Water by Selection and Genotyping of Multiresistant Escherichia coli</a>
<div id="type-add-share">Journal article<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Identification of Fecal Input Sites in Spring Water by Selection and Genotyping of Multiresistant Escherichia coli">
<img id="grid-view-preview" src="images/s1-images/result-07-thumb-preview.png" alt="Identification of Fecal Input Sites in Spring Water by Selection and Genotyping of Multiresistant Escherichia coli" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Feasibility of fast-response testing for coliform bacteria in distribution systems</a>
<div id="type-add-share">PDF<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Feasibility of fast-response testing for coliform bacteria in distribution systems">
<img id="grid-view-preview" src="images/s1-images/result-08-thumb-preview.png" alt="Feasibility of fast-response testing for coliform bacteria in distribution systems" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Chapter 8: Detection, enumeration and identification ... microorganisms of public health significance</a>
<div id="type-add-share">eBook – Page 13<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Chapter 8: Detection, enumeration and identification of environmental microorganisms of public health significance">
<img id="grid-view-preview" src="images/s1-images/result-09-thumb-preview.png" alt="Chapter 8: Detection, enumeration and identification of environmental microorganisms of public health significance" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Microbial indicators of water quality</a>
<div id="type-add-share">AVI<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Microbial indicators of water quality">
<img id="grid-view-preview" src="images/s1-images/result-10-thumb-preview.png" alt="Microbial indicators of water quality" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Fast detection and identification of bacteria in potable water</a>
<div id="type-add-share">PDF<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Fast detection and identification of bacteria in potable water">
<img id="grid-view-preview" src="images/s1-images/result-11-thumb-preview.png" alt="Fast detection and identification of bacteria in potable water" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="wwwnc.cdc.gov/eid/article/8/7/01-0264_article.htm" target="_blank">Antibiotic Resistance of Gram-Negative Bacteria in Rivers, United States</a>
<div id="type-add-share">Link<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="wwwnc.cdc.gov/eid/article/8/7/01-0264_article.htm" target="_blank" title="Antibiotic Resistance of Gram-Negative Bacteria in Rivers, United States">
<img id="grid-view-preview" src="images/s1-images/result-12-thumb-preview.png" alt="Antibiotic Resistance of Gram-Negative Bacteria in Rivers, United States" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Testing Well Water for Microorganisms</a>
<div id="type-add-share">YouTube<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Testing Well Water for Microorganisms">
<img id="grid-view-preview" src="images/s1-images/result-13-thumb-preview.png" alt="Testing Well Water for Microorganisms" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Problem organisms in water</a>
<div id="type-add-share">eBook<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="...">
<img id="grid-view-preview" src="images/s1-images/result-14-thumb-preview.png" alt="Problem organisms in water" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Application of Artificial Neural Network for the Identification of Fresh Water Bacteria</a>
<div id="type-add-share">PPT<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Application of Artificial Neural Network for the Identification of Fresh Water Bacteria">
<img id="grid-view-preview" src="images/s1-images/result-15-thumb-preview.png" alt="Application of Artificial Neural Network for the Identification of Fresh Water Bacteria" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="http://www.waksmanfoundation.org/labs/rochester/coliform.htm" target="_blank">Testing Water for Fecal Coliform Bacteria</a>
<div id="type-add-share">Link<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="http://www.waksmanfoundation.org/labs/rochester/coliform.htm" target="_blank" title="Testing Water for Fecal Coliform Bacteria">
<img id="grid-view-preview" src="images/s1-images/result-16-thumb-preview.png" alt="Testing Water for Fecal Coliform Bacteria" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Intelligent sensor based on ... used for water quality estimation</a>
<div id="type-add-share">PPT<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Intelligent sensor based on the photosynthesizing objects and used for water quality estimation">
<img id="grid-view-preview" src="images/s1-images/result-17-thumb-preview.png" alt="Intelligent sensor based on the photosynthesizing objects and used for water quality estimation" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Culture-based techniques for ... of pathogens in environmental samples</a>
<div id="type-add-share">SlideServe<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Culture-based techniques for identification of pathogens in environmental samples">
<img id="grid-view-preview" src="images/s1-images/result-18-thumb-preview.png" alt="Culture-based techniques for identification of pathogens in environmental samples" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">5.11 Fecal Bacteria</a>
<div id="type-add-share">Link<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="5.11 Fecal Bacteria">
<img id="grid-view-preview" src="images/s1-images/result-19-thumb-preview.png" alt="5.11 Fecal Bacteria" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Enumeration and identification of heterotrophic bacteria in groundwater and in a mountain stream</a>
<div id="type-add-share">Link<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Enumeration and identification of heterotrophic bacteria in groundwater and in a mountain stream">
<img id="grid-view-preview" src="images/s1-images/result-20-thumb-preview.png" alt="Enumeration and identification of heterotrophic bacteria in groundwater and in a mountain stream" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Identification and Control of Bacteria Sources: Lessons Learned from the Los Angeles River Watershed</a>
<div id="type-add-share">PDF<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Identification and Control of Bacteria Sources: Lessons Learned from the Los Angeles River Watershed">
<img id="grid-view-preview" src="images/s1-images/result-21-thumb-preview.png" alt="Identification and Control of Bacteria Sources: Lessons Learned from the Los Angeles River Watershed" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Fecal Indicator Bacteria Reduction in Urban Runoff:</a>
<div id="type-add-share">Link<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Fecal Indicator Bacteria Reduction in Urban Runoff:">
<img id="grid-view-preview" src="images/s1-images/result-22-thumb-preview.png" alt="Fecal Indicator Bacteria Reduction in Urban Runoff:" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Chapter 5: Analytical methods for the ... pathogenic mycobacteria</a>
<div id="type-add-share">eBook – Pages 55-73<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Chapter 5: Analytical methods for the detection of waterborne and environmental pathogenic mycobacteria">
<img id="grid-view-preview" src="images/s1-images/result-23-thumb-preview.png" alt="Chapter 5: Analytical methods for the detection of waterborne and environmental pathogenic mycobacteria" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<div id="container">
<div id="container-inner">
<div id="title">
<a href="#">Microbes in Water</a>
<div id="type-add-share">YouTube<a href="javascript:;" title="Add+Share" class="action_button share"><span></span></a></div>
</div>
</div>
<a href="#" title="Microbes in Water">
<img id="grid-view-preview" src="images/s1-images/result-24-thumb-preview.png" alt="Microbes in Water" />
</a>
</div>
<a href="#" title="Slide open for more details">
<div id="gridview-content-details">
<div id="grabber"></div>
</div>
</a>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
<div class="gridview-listed-item">
<a href="#" title="Close">
<div id="gridview-content-details-closed">
<div id="grabber-closed"></div>
</div>
</a>
<div id="container-open">
<div id="gt-gridview-content-item-open">
<ul>
<li>Last updated:<span><a href="#" title="Mark Henley" id="updated-by-who"><img src="images/profile-pic-mark.png" alt="Mark Henley" />Mark Henley</a><span>Dec 25, 2012</span></li>
<li>Used by: <span><a href="#">54 people</a>, <a href="#">1 course</a>, <a href="#">1 group</a>, <a href="#">3 collections</a></span></li>
</ul>
</div>
</div>
<div>
<input type="checkbox" id="research-results-1"/>
<div id="collected">1</div>
</div>
</div>
</div>
</div>
<div class="gt-content-column">
<h2>Tutorials</h2>
<div id="accordion">
<h3>Research skills</h3>
<div>
<ul>
<li><a href="javascript:;" id="gt_video_overlay_link" title="Selecting the Appropriate Database for Research">Selecting the Appropriate Database for Research</a></li>
<li id="with-divider"><a href="#" title="Developing a Search Strategy">Developing a Search Strategy</a></li>
</ul>
</div>
<h3>Citations/bibliographies</h3>
<div>
<ul>
<li><a href="#" title="Creating an EndNote Library/Adding References to EndNote">Creating an EndNote Library/Adding References to EndNote</a></li>
<li><a href="#" title="Creating an Annotated Bibliography with EndNote">Creating an Annotated Bibliography with EndNote</a></li>
</ul>
</div>
<h3>Papers</h3>
<div>
<ul>
<li><a href="#" title="Avoiding Plagiarism - Citing Sources">Avoiding Plagiarism - Citing Sources</a></li>
<li><a href="#" title="Writing a paper">Writing a paper</a></li>
</ul>
</div>
<h3>Video</h3>
<div>
<ul>
<li><a href="#" title="Video editing">Video editing</a></li>
<li><a href="#" title="Resources & equipment for Creating a Video">Resources & equipment for Creating a Video</a></li>
</ul>
</div>
<h3>Further skills</h3>
<div>
<ul>
<li><a href="#" title="Using Wordpress to Create a Project Website">Using Wordpress to Create a Project Website</a></li>
<li><a href="#" title="Presentation skills">Presentation skills</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="gt-popup share" style="float:left; margin-left: 30px;">
<div class="secondary-arrow-up"></div>
<div class="gt-popup-close share"></div>
<h1><div class="share-white-icon"></div>Share with</h1>
<div class="alternate input-container">
<input type="text" placeholder="Type who to share this with" id="share_autosuggest"/>
</div>
<h1><div class="addto-white-icon"></div>Add to</h1>
<div class="alternate gt-pop-up-list">
<div class="gt-force-right gt-counts-container">96</div>
<div class="gt-force-left archive-icon"></div>
<div>My archive</div>
</div>
<div class="gt-pop-up-list">
<div class="gt-force-left new-collection-icon"></div>
<div>
<a href="javascript:;" id="share_new_collection">New collection</a>
<input type="text" id="share_new_collection_input" style="display:none;"/>
<button type="button" class="gt-button gt-black-button gt-force-right" id="share_new_collection_create" style="display: none;">Create</button>
</div>
</div>
<div class="gt-pop-up-list alternate white highlighted" style="display: none;" id="water_testing_listitem">
<div class="gt-force-right gt-counts-container">0</div>
<div class="gt-force-left collection-icon"></div>
<div>Research on water testing</div>
</div>
<div class="gt-pop-up-list alternate white">
<div class="gt-force-right gt-counts-container">6</div>
<div class="gt-force-left collection-icon"></div>
<div>Data analysis</div>
</div>
<div class="gt-pop-up-list alternate white">
<div class="gt-force-right gt-counts-container">2</div>
<div class="gt-force-left collection-icon"></div>
<div>Videos</div>
</div>
<div class="gt-pop-up-list alternate white">
<div class="gt-force-right gt-counts-container">27</div>