if (navigator.userAgent.indexOf('MSIE') == -1) {
	var logoAnima = new Image();
	logoAnima.src = '/images/logo_anima.gif';
}
var animaRun = false;

function doCritter() {
	if (!animaRun) {
		animaRun = true;
		document.getElementById('Logo').src = '/images/logo_anima.gif';
		setTimeout('setNewLogo()',5500);
	}
}
function setNewLogo() {
	document.getElementById('Logo').src = '/images/logo.gif';
	animaRun = false;
}

function initializeCritter() {
	if (document.getElementById('TheE')) {
		var myE = document.getElementById('TheE');
		myE.onmouseover = function(e) {
			if (!e) {var e = window.event;}
			this.startMouse = e.screenX;
		}
		myE.onmouseout = function(e) {
			if (!e) {var e = window.event;}
			if (e.screenX < this.startMouse - 15) {
				doCritter();
			}
		}
	}
}
initialize.extend(initializeCritter);