var backgroundColor = new Array('062625', '291427', '062422', '181a2f', '351b1c', '0f2f18', '2d3118', '262012');
var bg = '333333';

$(document).ready(function() {
  if ($.cookie('background')){
    bg = $.cookie('background');
  } else {
    bg = backgroundColor[Math.floor(Math.random()*backgroundColor.length)];
    $.cookie('background', bg, { path: '/'});
  }
  $('body').css('background-color', '#'+bg);
});
