var aryImg = new Array(
			"home_rotate1.jpg",
			"home_rotate2.jpg",
			"home_rotate3.jpg",
                                      "home_rotate4.jpg",
                                      "home_rotate5.jpg"
			);

function swapIMG()
{
	var path = "../DSN/wwwmagicheadwearcom/Content/Image/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();