
$(document).ready(function() {

  function email(name) { 
    return ["mailto:", name, "@netnichols", ".com"].join(""); 
  }
  function randomInt(min, max) {
    return min + Math.round(Math.random()*(max-min));
  }
  function randomRGB(min, max) {
    return [randomInt(min, max), randomInt(min, max), randomInt(min, max)];
  }
  function rgb2hex(rgb) {
    return "#" + (rgb[0] + 256*rgb[1] + 65536*rgb[2]).toString(16);
  }
  function updateBar() {
    $('#bar tr td').each(function() {
      var color = randomRGB(100, 200);
      var normal = rgb2hex(color);
      var lighter = rgb2hex([color[0]+32, color[1]+32, color[2]+32]);
      $(this).animate({backgroundColor:normal, color:lighter}, "slow").text(normal);            
    });
  }
  $("a.email").attr("href", email("jeff"));
  setInterval(updateBar, 4000);
  
});
