// JavaScript Document

myPix=new Array("http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg", "http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg",
"http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg",
"http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg",
"http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg",
"http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg",
"http://localhost/client/panda/wp-content/themes/panda/img/head/head_home.jpg")

imgCt=myPix.length

function choosePic() {
	if (document.images) {
		randomNum = Math.floor
		((Math.random()*imgCt))
	    document.myPicture.src =
		myPix [randomNum]
	}
}
