<!--
//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("alaska1.jpg", 
	"alaska2.jpg",
	"bbq2.jpg",
    "bbq07.jpg",
	"bbq3.jpg",
	"charles.jpg",
	"classicalband1.JPG",
    "foliage06.jpg", 
	"foliage2.jpg",
	"foliage3.jpg",
	"foliage4.jpg",
    "grad07.jpg",
    "grad072.jpg", 
    "gradgala07.jpg", 
    "gradgala2.jpg",
    "grainofrice.jpg",
    "grainofrice2.jpg",
 	"hooding.jpg",
 	"hooding2.jpg",
    "mitgrad.jpg",
	"nyc.jpg",
    "publicgarden.jpg",
    "rooftop.jpg",
    "rooftop2.jpg",
    "songkran.jpg",
    "songkran2.jpg",			 
	"sportday.jpg",     
    "sportday2.jpg", 
    "symposium.jpg",
	"thainight1.jpg",
	"thainight2.jpg",
	"thainight3.jpg",
	"thainight4.jpg",
	"thainight5.jpg",
	"thainight6.jpg",
	"thainight7.jpg",
	"thainight8.jpg",
	"thainight9.jpg",
	"thainight10.jpg",
	"thainight11.jpg",
	"thainight12.JPG",
	"thainight13.jpg",
	"thainight14.jpg",
	"thainight15.jpg",
	"thainightgroup1.JPG",
	"thainightgroup2.jpg",
	"thainightred.JPG",
	"tpp.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]);
}
-->