  var thisPic = 1;  function prev() {    if (thisPic > 1) {	thisPic--	document.photo.src = "img/c0308-" + thisPic + ".jpg"	} else {	thisPic = 7	document.photo.src = "img/c0308-" + thisPic + ".jpg"    }  }  function next() {  if (thisPic < 7) {	thisPic++	document.photo.src = "img/c0308-" + thisPic + ".jpg"	} else {	thisPic = 1	document.photo.src = "img/c0308-" + thisPic + ".jpg"	}  }function slideShow() {  if (thisPic < 7) {	thisPic++	document.photo.src = "img/c0308-" + thisPic + ".jpg"	} else {	thisPic = 1	document.photo.src = "img/c0308-" + thisPic + ".jpg"	}	timerID=setTimeout('slideShow()',8000);}function stop() {	clearTimeout(timerID);}
