var path = "/DSN/wwwilluminessencenet/Content/Images/home/";
var ImgID = new Array("ImgOne","ImgTwo","ImgThree");
var ImgBnk = new Array("home_aromatherapy.jpg","home_baby.jpg","home_gifts.jpg","home_wedding.jpg","home_candles.jpg","acc_home.jpg");

	tmpArray = new Array();
	toDisplay = new Array();
	for(i=0;i<ImgBnk.length;i++)
	{
		tmpArray.push(ImgBnk[i]);
	}
	for(i=0;i<ImgID.length;i++)
	{
		e = document.getElementById(ImgID[i]);
		e.src = path + tmpArray.splice(Math.floor(Math.random()*(tmpArray.length-1)),1)[0];
	}

