var tt=null;

function hide() {
	if(!document.getElementById("mood")) return;
	document.getElementById("mood").style.display="none";
	//window.clearTimeout(tt);
}

function showdiv() {
   hide();
   show();
}

function show() {
	/*var w=window.document.body.clientWidth;
	var h=window.document.body.clientHeight;
	var dw=300;
	var dh=300;
	getElementById("mood").style.left=w/2-dw/2;
	getElementById("mood").style.top=h/2-dh/2;
	getElementById("mood").style.display="block";*/
	tt=window.setTimeout("hide()",3500);
}

window.onload = function () {
	show();
}