<!-- 
var words = new Array();
words[0]='Blanca_and_Luci.jpg" title="Classwork on deck"';
words[1]='blanca_rocio_me.jpg" title="Blanca, Erin & Rocio"';
words[2]='ibukun.jpg" title="Working with a student"';
words[3]='janet_luci.jpg" title="Luci & Janet"';
words[4]='katie_on_nettie.jpg" title="Katie & Nettie"';
words[5]='katie.jpg" title="Using a sextant"';
words[6]='kexia.jpg" title="Kexia"';
words[7]='pointing.jpg" title="Roxy & Rocio"';
words[8]='IMG_1320.jpg" title="Journal Entry"';
words[9]='snork.jpg" title="snorkeling!"';
words[10]='statia.jpg" title="Above the rainforest"';
words[11]='sunset.jpg" title="Sunset from Spirit"';
words[12]='Ted_teaching.jpg" title="Learning Navigation"';
words[13]='Wren.jpg" title="At the helm"';
words[14]='DSC00609A.jpg" title="Elicha & Gaby"';
words[15]='Hair.jpg" title="Hairstyles on board!"';

for (i=0;i<2;i++) {
words=words.sort(randomSort);
}

function randomSort(w1,w2) {
return Math.floor(Math.random()*11)-1;
}

var imgs = 6;
document.write('<div align="center">');
for (z=0;z<imgs;z++) {
	document.write('<img src="/images/snapshots/' + words[z] + '" width="100" height="75">');
	if (z!=(imgs-1)) {
		document.write('<img src="/images/invspace.gif" width="5" height="1">');
	}
}
document.write('</div>');
//-->