matrixhasyou.html

<html>

<head>
<style>
body {
	background: url(http://home.flodhest.net/gallery/matrix.gif);
	margin: 4em;
}
#content {
	display: none;
	font-size: 30pt;
}
</style>
<script>
function swap() {
	document.body.style.backgroundImage  = "none";
	document.getElementById('content').style.display = "block";
}
</script>
</head>

<body onload="setTimeout('swap()', 1000)">
<div id="content">
The Matrix has you!
</div>
</body>

</html>