function showAcorn(window, MALTween, MALAd, undefined, timing) {
	MALAd.imgPath = "acorn/img/";
	MALAd.images = [
		"logo.png",
		"squirrel.png"
	];

	MALTween.add("logo", {});
	MALTween.add("squirrel", {});

	// Logo
	$("logo").style.backgroundImage = "url('" + MALAd.imgPath + MALAd.images[ 0 ] + "')";
	MALTween.logo.update({delay: 0.0001, time: 1.0, opacity: 1, transition: timing("linear"), startWith: {opacity: 0}});

	// Squirrel
	MALTween.squirrel.update({delay: 1.5, time: 0.0001, opacity: 1, transition: timing("linear"), startWith: {opacity: 0}})
		.addEvent("complete", function() {
			if (this.scene == 1) {
				var currentSleepFrame = 0;
				new MALAdSprite({delay: 0.0001, frames: 77, time: {defaultTime: 0.0333}}, function () {
					$("squirrel").style.backgroundPosition = "0px -" + (206*this.frame) + "px";

					var maxSleepFrames = 10;
					switch (this.frame) {
						case 35: // Pause eye
							if (currentSleepFrame >= maxSleepFrames) {
								currentSleepFrame = 0;
							}
							else {
								this.frame = 34;
								currentSleepFrame++;
							}
							break;
						case 36: // Pause eye
							if (currentSleepFrame >= maxSleepFrames) {
								currentSleepFrame = 0;
							}
							else {
								this.frame = 35;
								currentSleepFrame++;
							}
							break;
						case 37: // Pause eye
							if (currentSleepFrame >= maxSleepFrames) {
								currentSleepFrame = 0;
							}
							else {
								this.frame = 36;
								currentSleepFrame++;
							}
							break;
						case 38: // Pause eye
							if (currentSleepFrame >= maxSleepFrames) {
								currentSleepFrame = 0;
							}
							else {
								this.frame = 37;
								currentSleepFrame++;
							}
							break;
						case 76:
							MALTween.squirrel.update({delay: 0.0001, time: 0.0001, opacity: 0, transition: timing("linear"), startWith: {opacity: 1}})
								.addEvent("complete", showContactUsLabel);
							break;
					}
				});
			}
		});
}

