cara ele ta funcionando direitinho.... vi aqui e ta dando certo mas a img não ta no fundo e sim no topo..... da uma olhada no codigo.... o conteudo está abaixo na imgagem q seria a img de fundo..... <html>
<head>
<meta>
<title>Untitled Document</title>
<script>
function f(element, vetor){
var random=function(size){return Math.floor(Math.random()*size)}
var n=random(vetor.length)
var img=new Image()
img.src=vetor[n].src
img.id=vetor[n].id
img.onload=function(){element.style.backgroundColor=vetor[n].background}
img.onerror=function(){element.style.backgroundColor="white"}
element.appendChild(img)
}
</script>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-repeat: no-repeat;
background-position: top;
}
-->
</style>
</head>
<body>
<div id="header">
<script>
f(
document.getElementById("header"),
[
{"id":"imagem1", "src":"img/fundo01.jpg", "background":"#000000"},
{"id":"imagem2", "src":"img/fundo02.jpg", "background":"#000fff"},
{"id":"imagem3", "src":"img/fundo03.jpg", "background":"#555999"}
]
)
</script>
<table width="500" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCCCC">
<tr>
<td>teste, teste, teste, teste, teste, teste, teste, teste, teste, teste, teste, </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</div>
</body>
</html>