var aryImg = new Array(
			"test1.jpg",
			"test2.jpg",
			"test3.jpg",
			"test4.jpg",
			"test5.jpg",
			"test6.jpg",
			"test7.jpg",
			"test8.jpg"
			);

function swapIMG()
{
	var path = "../DSN/wwwkrazyklothescom/Content/Images/Default/";
	var picNum = Math.floor(Math.random()*(aryImg.length));

	if(!document.getElementById("SplashPhoto")) return;

	var obj = document.getElementById("SplashPhoto");
	obj.src = path + aryImg[picNum];
}

swapIMG();