// JavaScript Document

// JavaScript Document
window.onload=randomPic;


var randomNum = Math.floor(3*Math.random());
var randomPix = new Array("images/paintings/anatomy_forest/optimized/CollumEnneaphyllis.jpg",
						  "images/paintings/anatomy_forest/optimized/CrurisConstrictum.jpg",		  
						  "images/paintings/anatomy_forest/optimized/SpinaeumPropello.jpg"
						  )

var imgText= new Array("Collum Enneaphyllis",
					   "Cruris Constrictum",
					   "Spinaeum Propello"
	)	

var imgMedium = new Array("oil, acrylic, graphite, collage, wax on ragboard",
						  "oil, acrylic, graphite, collage, wax on ragboard",
						  "oil, acrylic, graphite, collage, wax on ragboard")

var imgDimension = new Array("30 x 22",
							 "30 x 22",
							 "30 x 22")

var imgDate = new Array("2009",
						"2009",
						"2009"
	)


function randomPic(){
	document.getElementById("myPicture").src = randomPix[randomNum];
	document.getElementById("contentText").innerHTML = imgText[randomNum];
	document.getElementById("contentMedium").innerHTML = imgMedium[randomNum];
	document.getElementById("contentDimensions").innerHTML = imgDimension[randomNum];
	return false;
}

