// JavaScript Document

var thePhoto1=new Array();
thePhoto1[1]='images/s1.jpg';
thePhoto1[2]='images/s2.jpg';
thePhoto1[3]='images/s3.jpg';

var thePhotoDesc1 = new Array();
thePhotoDesc1[1] = 'Photo: © Allan Thompson';
thePhotoDesc1[2] = 'Photo: © Allan Thompson';
thePhotoDesc1[3] = 'Photo: © Allan Thompson';

var ry1=Math.floor(Math.random()*thePhoto1.length)
if (ry1==0)
ry1=1

function showPhoto1(){
	document.write('<img src="' + thePhoto1[ry1] + '" width="152" height="126" border="0" alt="' + thePhotoDesc1[ry1] + '">');
}

var thePhoto2=new Array();
thePhoto2[1]='images/s4.jpg';
thePhoto2[2]='images/s5.jpg';
thePhoto2[3]='images/s6.jpg';

var thePhotoDesc2 = new Array();
thePhotoDesc2[1] = 'Photo: © Allan Thompson';
thePhotoDesc2[2] = 'Photo: © Allan Thompson';
thePhotoDesc2[3] = 'Photo: © Allan Thompson';

var ry2=Math.floor(Math.random()*thePhoto2.length)
if (ry2==0)
ry2=1

function showPhoto2(){
	document.write('<img src="' + thePhoto2[ry2] + '" width="152" height="126" border="0" alt="' + thePhotoDesc2[ry2] + '">');
}

var thePhoto3=new Array();
thePhoto3[1]='images/s7.jpg';
thePhoto3[2]='images/s8.jpg';
thePhoto3[3]='images/s9.jpg';

var thePhotoDesc3 = new Array();
thePhotoDesc3[1] = 'Photo: © Peter Bregg';
thePhotoDesc3[2] = 'Photo: © Allan Thompson';
thePhotoDesc3[3] = 'Photo: © Allan Thompson';

var ry3=Math.floor(Math.random()*thePhoto3.length)
if (ry3==0)
ry3=1

function showPhoto3(){
	document.write('<img src="' + thePhoto3[ry3] + '" width="152" height="126" border="0" alt="' + thePhotoDesc3[ry3] + '">');
}

var thePhoto4=new Array();
thePhoto4[1]='images/s10.jpg';
thePhoto4[2]='images/s11.jpg';
thePhoto4[3]='images/s12.jpg';

var thePhotoDesc4 = new Array();
thePhotoDesc4[1] = 'Photo: © Peter Bregg';
thePhotoDesc4[2] = 'Photo: © Peter Bregg';
thePhotoDesc4[3] = 'Photo: © Peter Bregg';

var ry4=Math.floor(Math.random()*thePhoto4.length)
if (ry4==0)
ry4=1

function showPhoto4(){
	document.write('<img src="' + thePhoto4[ry4] + '" width="152" height="126" border="0" alt="' + thePhotoDesc4[ry4] + '">');
}

var thePhoto5=new Array();
thePhoto5[1]='images/s13.jpg';
thePhoto5[2]='images/s14.jpg';
thePhoto5[3]='images/s15.jpg';

var thePhotoDesc5 = new Array();
thePhotoDesc5[1] = 'Photo: © Peter Bregg';
thePhotoDesc5[2] = 'Photo: © Peter Bregg';
thePhotoDesc5[3] = 'Photo: © Peter Bregg';

var ry5=Math.floor(Math.random()*thePhoto5.length)
if (ry5==0)
ry5=1

function showPhoto5(){
	document.write('<img src="' + thePhoto5[ry5] + '" width="152" height="126" border="0" alt="' + thePhotoDesc5[ry5] + '">');
}