numImagenes=0;
function carga(){
  for (x=0;x<document.images.length;x++){
      document.images[x].onload = vincImgOnload;
      buffer = new Image();
      buffer.onload = vincImgOnload;
      buffer.src = document.images[x].src;
  }
}

function vincImgOnload(){
numImagenes++;
   if (numImagenes >= document.images.length){
     document.getElementById('content').style.display = 'block';
     document.getElementById('loader').style.display = 'none';
   }
}

function statusBar(){
  window.status = '::.. Barrutia Producciones ..::';
}

setInterval(statusBar,100);
