function yellowFade(el) {
  var b = 155;
  function f() {
    el.style.background = 'rgb(255,255,'+ (b+=4) +')';
    if (b < 255) {
      setTimeout(f, 40);
    }
  };
  f();
}
