var timeout = 6000;        
        var fondo_img = new Array();
        var numFondo = 0;
        
        for (i=0;i<4;i++){
            fondo_img[i]=new Image();
        }                
        
/*        function fondo_rotativo(){      
            if (numFondo >= (4 - 1))
                numFondo = 0;
            else
                numFondo++;
                
            document.getElementById("fondoRotativo").style.backgroundImage = "url(" + fondo_img[numFondo].src + ")";            
            setTimeout("fondo_rotativo()",timeout);            
        }             */
