Nav = {
  load: function(){
    bg = Math.floor(Math.random()*4)
    $('navigation').className = 'navigation n_' + bg;
    
    b = Math.floor(Math.random()*3);
    $('body').className = b;
  }
}