This isn't exactly what you want, but it should help you along:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<script type="text/javascript">
function _onload(){
document.getElementById('loading').style.display = 'none';
}
</script>
</head>
<body onload="_onload()">
<div id="loading" style="position: absolute; top: 5px; right: 5px; background: #FF0000; color: #FFF; padding: 3px; font-size: 12px;">
Loading...
</div>
<!-- YOU IMAGES HERE -->
<img src="http://upload.wikimedia.org/wikipedia/commons/e/e2/Theodore_Rooseveltnewtry.jpg" alt="" />
</body>
</html>
Bookmarks