document.write('<div id="loading" class="din texto15"><img src="imgs/loading.gif" width="40" height="39"> <br>Aguarde por favor...</div>');
document.write('<div id="preto"></div>');
// Created by: Simon Willison | http://simon.incutio.com/
function addLoadEvent(func) {
	
	
	
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
	
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
	
  document.getElementById("loading").style.display="none";
  $("#preto").fadeOut(300, function(){ 
  $(this).remove();
});

});




