	// Cache all images
if (document.images) {
		// Face images
	LogoFace1 = new Image(80, 54);		LogoFace1.src = WrapperPath + "/Art/TopRow_Face1.jpg";
	LogoFace2 = new Image(80, 54);		LogoFace2.src = WrapperPath + "/Art/TopRow_Face2.jpg";
};
	// The Total number of "face" images
var LogoFace_Count = 1;
	// The minimum time, in milliseconds, until the face changes
var LogoFace_MinTime = 3000;
	// The maximum time, in milliseconds, until the face changes
var LogoFace_MaxTime = 30000;
	// Switch the face
function SetLogoFace() {
	if (document.images) {
		var FaceToShow = Math.floor( Math.random() * LogoFace_Count ) + 2;
		document.images.LogoFace.src = eval('LogoFace' + FaceToShow + '.src');
		TimeOut = setTimeout("ResetLogoFace()", 700);
	};
};
	// Reset the face back to "depressed".
function ResetLogoFace() {
	if (document.images) {
		document.images.LogoFace.src = LogoFace1.src;
		TimeOut = setTimeout( "SetLogoFace()", Math.floor( Math.random() * LogoFace_MaxTime ) + LogoFace_MinTime );
	};
};
	// Kick off the process
ResetLogoFace();
