function init(){
  items = 1;
  totalItems = projetosReais.length;
  setLock();
  unlock("all");
  modulos = {};

  $(".grid").createGrid();

  $(".modulo").advancedMapping({
    x:                [10,210,409,213],
    y:                [106,5,106,203], 
    overlayWidth:     $(".grid").width(),
    overlayHeight:    $(".grid").height()
  });

  setSprite();
  setPreloader();
  setTampoes();
  setFilters();

  tempoOcioso = 0;
  tempoLimite = 15;
  
  $("body").everyTime("1s", function(){

    tempoOcioso++;

    $(window).mousemove(function(mouse){
      tempoOcioso = 0;
    });

    if(tempoOcioso >= tempoLimite && lockFilter == "none"){
      $(".modulo").randomize();
      tempoOcioso = 0;
    }
  });
  //$(".dados").delay(2000).fadeIn();
}
