function swapImage() { //v3.0  var i,j=0,x,a=swapImage.arguments; document.sr=new Array; for(i=0;i<(a.length-2);i+=3)   if ((x=findObj(a[i]))!=null){document.sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}}	myPix = new Array("images/homepage/anders.jpg","images/homepage/cavellcade.jpg","images/homepage/sheriff.jpg","images/homepage/sunday.jpg","images/homepage/waltmable.jpg")	imgCt = myPix.length 	function choosePic() {		if (document.images) {			randomNum = Math.floor((Math.random() * imgCt))			document.myPicture.src = myPix[randomNum]		}	}
