// JavaScript Document

function hideFloater()
{
	document.getElementById("floater").style.display = "none";
}

setTimeout(hideFloater, 15000);
