function homePlaceRandom()
{
	myInt = 0;

	// Just so that we get a "True" random number above Zero.

	while(myInt == 0) {
		myInt = getRandom();
	}

	if(document.images['iFull']) {
		newImage = new Image();
		newImage.src = 'images/home/full_' + myInt + 'a.gif';

		document.images['iFull'].src = newImage.src;
	}
}

function getRandom()
{
	myInt = Math.round(Math.random() * 3);
	return myInt;
}