
var numpics = 9;
var pics = new Array();
pics[0] = "chili2006.JPG";
pics[1] = "DCP_0031.JPG";
pics[2] = "DSCN0011.JPG";
pics[3] = "mfrjun05.JPG";
pics[4] = "picnic06-2.JPG";
pics[5] = "picnic06.JPG";
pics[6] = "social0506.JPG";
pics[7] = "social1204.jpg";
pics[8] = "socialpkdick0306.JPG";

function getphoto()
{
	document.getElementById("column_r").innerHTML = 
		"<img src='photo_gallery/websiterotation/" + pics[Math.floor(Math.random()*9)] + "'/>";
}

function getphoto2()
{
	var i;
	i = Math.floor(Math.random()*9);
	document.getElementById("column_r").innerHTML = 
		"<img src='../photo_gallery/websiterotation/" + pics[i] + "'/>";
}

