<!--
//randomly chooses an image to display on the index page.
//Pictures should be located in images/homePagePicures and have an aspect ratio of roughly 3:1 (preferably 650x210)
var pictures = new Array("dinner.jpg","beach.jpg");
function didLoadForHomePagePicture()
{
    var homePagePicture = document.getElementById("homePagePicture");
    //Math.random returns a float between 0 and 1
    var pictureIndex = Math.floor((Math.random()) * pictures.length);
    homePagePicture.src=("images/homePagePictures/" +pictures[pictureIndex]);
}
-->