<!--
// Java script to display random home page images 
var TopImage = new Array();
var BottomImage = new Array();
var TopImageAlt = new Array();
var BottomImageAlt = new Array();

TopImage[0] = './Graphics/TopImage1.JPG';
TopImageAlt[0] = 'Steve Tattenhall Tennis club 2003';
TopImage[1] = './Graphics/TopImage2.JPG';
TopImageAlt[1] = 'Tattenhall Tennis club 2003';
TopImage[2] = './Graphics/TopImage3.JPG';
TopImageAlt[2] = 'End of Season Tournament Tattenhall Tennis Club Aug 2007';
TopImage[3] = './Graphics/TopImage4.JPG';
TopImageAlt[3] = 'End of Season Tournament Tattenhall Tennis Club Aug 2007';

BottomImage[0] = './Graphics/BottomImage1.JPG';
BottomImageAlt[0] = 'End of Season Tournament Tattenhall Tennis Club Aug 2007';
BottomImage[1] = './Graphics/BottomImage2.JPG';
BottomImageAlt[1] = 'End of Season Tournament Tattenhall Tennis Club Aug 2007';
BottomImage[2] = './Graphics/BottomImage3.JPG';
BottomImageAlt[2] = 'End of Season Tournament Tattenhall Tennis Club Aug 2007';

var Ti = TopImage.length;
var Bi = BottomImage.length;

var whichTopImage = Math.round(Math.random()*(Ti-1));
var whichBottomImage = Math.round(Math.random()*(Bi-1));
function showTopImage(){
				 document.write('<img class="HomePicture Portrait TopLeft"  alt="'+TopImageAlt[whichTopImage]+'" src="'+TopImage[whichTopImage]+'" border="0">');
}
function showBottomImage(){
				 document.write('<img class="HomePicture Landscape Right" alt="'+BottomImageAlt[whichBottomImage]+'" src="'+BottomImage[whichBottomImage]+'" border="0">');
}

//-->