/* Displays thumbnails in a vertical column */

var ImageCount = 1;				/* First image number on this page */

while(ImageCount<=Last) {			/* Generate the gallery until we reach the last image */
	document.write('<p>');
	if(ImageCount<10) {			/* Image numbers less than 10 will have a leading 0 */
		ImageCount = '0' + ImageCount;
	}
							/* Build the url and display it with the thumbnail */
	var thumbUrl = ContentLocation + Title + '/' + Title +ImageCount + '_thumb.jpg';
	var code = '<a href=\"javascript:changePhoto(ContentLocation, Title, \'' + ImageCount+'\');\"><img src=\"' + thumbUrl +'\" border=\"0\" width=\"86%\"></a>';
	
	document.write(code);
	document.write('</p>');
	ImageCount++;
}