// JavaScript Document
//Chooses a random picture to insert into the page
mySmallPix = new Array("Images/frontrotate/france_3.jpg",
						"Images/frontrotate/sports-france.jpg",
					   "Images/frontrotate/sports_ladies_small_1.jpg",
					   "Images/frontrotate/sports_venlo.jpg",
					   "Images/frontrotate/SportsJune2005.jpg",
					   "Images/frontrotate/the_group_large.jpg",
					    "Images/frontrotate/shakey_things.jpg",
					   "Images/frontrotate/burley_2007.jpg"
					   	);

myTextPix = new Array("French Heroes Night at Chateau L'Hoste (near Roquecor) during the visit to Jim and Chris Henry in October 2006",
					   "Camlez 2002. We went over to see Jeremy and Elaine. Don't think we did any dressing up on this one",
					   "SPORTS ladies gather at The Palace for their winter night out, January 2008. Emp does the honours with the wine",
					   "Before SPORTS - Fareham RT visit Venlo in 1985. Most of the founder members are on this picture",
					   "This is Dennis's, June 2005. A full house. ",
					   "This is Guernesy in 2004. A splendid weekend organised by KB. All our French members turned up too",
					   "The Shakey Things. A selection of the more popular instruments. How many can you name ? Can't help thinking of Running Bear when I see these",
					   "Some of the walkers (with hiking poles) limbering up for the walk around Burley in the New Forest - October 2007"
					  );

imageCount = mySmallPix.length;

function choosePic(){
	if(document.images){
		randomNum=Math.floor((Math.random() * imageCount));
		document.write('<div class="centeredImage"><img src=' + mySmallPix[randomNum] + ' alt="A SPORTS picture from the past" /></div>');
		document.write('<p class="caption">' + myTextPix[randomNum] + '</p>');
	}
}



