window.onload = function() {setTimeout(showIt, 2000);};
 
function showIt() { 
	document.getElementById('wait').style.display = 'none';
    document.getElementById('cont').style.display = 'block';
}