// JavaScript Document
<!--
	  function thumbChange( theImage, theSurfer, thePhotog, theLink ){
	  	document.getElementById('photos').style.backgroundImage = 'url(' + theImage + ')';
		theText = "";
		if (theSurfer){ theText = '<strong>Surfer:</strong> ' + theSurfer };
		if (thePhotog){ theText = theText + ' <strong>Photo:</strong> ' + thePhotog } 
		else { theText = theText + ' <strong>Photo:</strong> unknown. Please contact us if you shot this photo.  We would like to give you credit' };
		if (theLink){ theText = theText + ' <a href="http://' + theLink + '" target="_blank">' + theLink + '</a>'};
		document.getElementById('credits').innerHTML = theText 
	  }
//-->