// JavaScript Document
<!-- 
var fondo = new Array(); 



fondo[0] = 'watsay_archivos/bg3.jpg'; 
fondo[1] = 'watsay_archivos/bg4.jpg'; 
fondo[2] = 'watsay_archivos/bg5.jpg'; 



var ele = Math.round(Math.random()*2); 

document.write( '<style type="text/css">' ); 
document.write('#body-bg{'); 
document.write('background-image: url("'+fondo[ele]+'");'); 
document.write('}'); 
document.write('</style>'); 
// --> 