function ImgRand()
{
	var ImgList = new Array("http://imaginedayspa.fi/img/img1.jpg",
							"http://imaginedayspa.fi/img/img2.jpg",
							"http://imaginedayspa.fi/img/img3.jpg",
							"http://imaginedayspa.fi/img/img5.jpg",
							"http://imaginedayspa.fi/img/img6.jpg",
							"http://imaginedayspa.fi/img/img7.jpg",
							"http://imaginedayspa.fi/img/img8.jpg",
							"http://imaginedayspa.fi/img/img9.gif",
							"http://imaginedayspa.fi/img/img10.gif",
							"http://imaginedayspa.fi/img/img11.gif"
							);
	
	var Index = Math.floor(Math.random() * (ImgList.length));
	if (ImgList[Index] != null)
	{
		document.getElementById("img_rand").src = ImgList[Index];
		document.getElementById("div_img_rand").style.display = "block";
	}
}
