

var myPic = new Array("images/video_placeholder.gif", "images/watch_goo.gif");

function selectPic() 
{
	var randomNum = Math.floor(Math.random() * myPic.length);
	if(document.getElementById("myPicture"))
		document.getElementById("myPicture").src = myPic[randomNum];
}
