<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var thevisual_media = new Array()
var the_alt = new Array()
var the_title = new Array()

thevisual_media[0] = '/visual_media/home/slideshow/boats.jpg'
thevisual_media[1] = '/visual_media/home/slideshow/fishermen.jpg'
thevisual_media[2] = '/visual_media/home/slideshow/surfer.jpg'
thevisual_media[3] = '/visual_media/home/slideshow/workers.jpg'
thevisual_media[4] = '/visual_media/home/slideshow/cruise_ship.jpg'
thevisual_media[5] = '/visual_media/home/slideshow/cayucos_pier.jpg'
thevisual_media[6] = '/visual_media/home/slideshow/research_boat.jpg'
thevisual_media[7] = '/visual_media/home/slideshow/sailing.jpg'
thevisual_media[8] = '/visual_media/home/slideshow/scuba.jpg'
thevisual_media[9] = '/visual_media/home/slideshow/sf_beach.jpg'
thevisual_media[10] = '/visual_media/home/slideshow/surf_fishing.jpg'

the_alt[0] = 'Oil spill response - by Heather Kerkering'
the_alt[1] = 'Commercial fishing - by Tom Wadsworth'
the_alt[2] = 'Surfing - by Heather Kerkering'
the_alt[3] = 'Oceanographic research - by Tom Wadsworth'
the_alt[4] = 'Marine operations - by Chad King'
the_alt[5] = 'Cayucos Pier recreation - by Tom Wadsworth'
the_alt[6] = 'Fisheries research - by Tom Wadsworth'
the_alt[7] = 'Sailing - by Becky Stamski'
the_alt[8] = 'SCUBA diving - by Steve Lonhart'
the_alt[9] = 'SF Beach recreation - by Steve Lonhart'
the_alt[10] = 'Recreational fishing - by Andrew DeVogelaere'

the_title[0] = 'Oil spill response - by Heather Kerkering'
the_title[1] = 'Commercial fishing - by Tom Wadsworth'
the_title[2] = 'Surfing - by Heather Kerkering'
the_title[3] = 'Oceanographic research - by Tom Wadsworth'
the_title[4] = 'Marine operations - by Chad King'
the_title[5] = 'Cayucos Pier recreation - by Tom Wadsworth'
the_title[6] = 'Fisheries research - by Tom Wadsworth'
the_title[7] = 'Sailing - by Becky Stamski'
the_title[8] = 'SCUBA diving - by Steve Lonhart'
the_title[9] = 'SF Beach recreation - by Steve Lonhart'
the_title[10] = 'Recreational fishing - by Andrew DeVogelaere'

// do not edit anything below this line
var j = 0
var p = thevisual_media.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = thevisual_media[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
//document.write('<img src="'+thevisual_media[whichImage]+'" width="194" height="129">');
document.write('<img src="'+thevisual_media[whichImage]+'" width="194" height="129" alt="'+the_alt[whichImage]+'" title="'+the_title[whichImage]+'">');
}
//  End -->
