// JavaScript Document// Advanced Random Images Start					// Copyright 2001-2002 All rights reserved, by Paul Davis - www.kaosweaver.com					  var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array()					// KW_ss[5000]					  KW_ARI[KW_ARI.length]='photos/activities/windsurf.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/walkers.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/swan.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/pony.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/gardens.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/golf.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/fishing.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/cycle.jpg';					  KW_ARI[KW_ARI.length]='photos/activities/clays.jpg';					  j=parseInt(Math.random()*KW_ARI.length);					  j=(isNaN(j))?0:j;						document.write("<img width=325 height=244 name='seqSlideShow' src='"+KW_ARI[j]+"'>");					function seqSlideShow(t,l) { // Sequential Slideshow by Kaosweaver					  x=document.seqSlideShow; j=l; j++;  if (j==KW_ARI.length) j=0;					  x.src=KW_ARI[j]; setTimeout("seqSlideShow("+t+","+j+")",t);					}					 					// Advanced Random Images End