<!-- 
words=new Array();
words[0]='athelm.jpg" alt="hold your course!"';
words[1]='atsea.jpg" alt="dreams made reality"';
words[2]='cannon.jpg" alt="Working with a student"';
words[3]='planning.jpg" alt="There can be no success without a plan"';
words[4]='sunset.jpg" alt="Another beautiful sunset at sea"';
words[5]='teaching.jpg" alt="Teaching on the high seas"';
words[6]='seaphotos2.jpg" alt="Trawl results"';
words[7]='seaphotos4.jpg" alt="Sediment core"';
words[8]='seaphotosrcs.jpg" alt="RCS stern"';
words[9]='rcsseamans.jpg" alt="RCS under sail"';
words[10]='seaphotos.jpg" alt="Furling on headrig"';

for (i=0;i<2;i++) {
words=words.sort(randomSort);
}

function randomSort(w1,w2) {
return Math.floor(Math.random()*11)-1;
}

for (z=0;z<6;z++) {
document.write('<img src="../images/snapshots/' + words[z] + '" width="100" height="75" hspace="0" vspace="0">');
document.write('<img src="../images/invspace.gif" width="1" height="1" hspace="0" vspace="0">');
}
 //-->