// JavaScript Document

//Random photo
var thePhoto1=new Array();
thePhoto1[1]='images/1a.jpg';
thePhoto1[2]='images/1b.jpg';
thePhoto1[3]='images/1c.jpg';
thePhoto1[4]='images/1d.jpg';
thePhoto1[5]='images/1e.jpg';
thePhoto1[6]='images/1f.jpg';

var thePhoto2=new Array();
thePhoto2[1]='images/2a.jpg';
thePhoto2[2]='images/2b.jpg';
thePhoto2[3]='images/2c.jpg';
thePhoto2[4]='images/2d.jpg';
thePhoto2[5]='images/2e.jpg';
thePhoto2[6]='images/2f.jpg';
thePhoto2[7]='images/2g.jpg';

var thePhoto3=new Array();
thePhoto3[1]='images/3a.jpg';
thePhoto3[2]='images/3b.jpg';
thePhoto3[3]='images/3c.jpg';
thePhoto3[4]='images/3d.jpg';
thePhoto3[5]='images/3e.jpg';
thePhoto3[6]='images/3f.jpg';
thePhoto3[7]='images/3g.jpg';

var rx=Math.floor(Math.random()*thePhoto1.length);
if (rx==0)
rx=1;

var ry=Math.floor(Math.random()*thePhoto2.length);
if (ry==0)
ry=1;

var rz=Math.floor(Math.random()*thePhoto3.length);
if (rz==0)
rz=1;

function showPhoto1() {
	document.write('<img src="'+thePhoto1[rx]+'" width="169" height="200" border="0" />');
}

function showPhoto2() {
	document.write('<img src="'+thePhoto2[ry]+'" width="189" height="200" border="0" hspace="1" />');
}

function showPhoto3() {
	document.write('<img src="'+thePhoto3[rz]+'" width="274" height="200" border="0" />');
}