var homePagePhotos = new Array(
'images/photos/home/001087.jpg',
'images/photos/home/001093.jpg',
'images/photos/home/001164.jpg',
'images/photos/home/001297.jpg',
'images/photos/home/001306.jpg',
'images/photos/home/001358.jpg',
'images/photos/home/001369.jpg',
'images/photos/home/001378.jpg',
'images/photos/home/001482.jpg',
'images/photos/home/001486.jpg',
'images/photos/home/001501.jpg',
'images/photos/home/002412.jpg');
var increment = 1/homePagePhotos.length;
var randomizer = Math.random();
var imageSlot = 0;
for(var i=0;i<homePagePhotos.length;i++)
{
	if((randomizer>=(i*increment)) && (randomizer<=((i*increment)+increment)))
		imageSlot = i;
}
var homePageImage = "<img src=\"" + homePagePhotos[imageSlot] + "\">";
document.write(homePageImage);
