var Pic = new Array()
Pic[0] = 'images/aboutwsfs/ani1.jpg'
Pic[1] = 'images/aboutwsfs/ani2.jpg'
Pic[2] = 'images/aboutwsfs/ani3.jpg'
var t
var p = Pic.length

function runSlideShow(){
   j = Math.floor(Math.random() * p);
   document.images.SlideShow.src = Pic[j]
}

function showPicture() {
	j = Math.floor(Math.random() * p);
	document.write('<img src="' + Pic[j] + '" name="SlideShow" alt="" width="181" class="ad1" />')
}
