<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var currentcolor = 0

bgcolors = new Array();
bgcolors[0] = '#fedf46';
bgcolors[1] = '#fee14f';
bgcolors[2] = '#fee258';
bgcolors[3] = '#fee462';
bgcolors[4] = '#fee56b';
bgcolors[5] = '#fee774';
bgcolors[6] = '#fee97d';
bgcolors[7] = '#feea87';
bgcolors[8] = '#feec90';
bgcolors[9] = '#feed99';
bgcolors[10] = '#feefa2';
bgcolors[11] = '#fff1ac';
bgcolors[12] = '#fff2b5';
bgcolors[13] = '#fff4be';
bgcolors[14] = '#fff5c7';

var firstTime = true;

function backgroundChanger() {
  if (!document.getElementById('site_msg')) return;
  document.getElementById('site_msg').style.background = bgcolors[currentcolor];
  //setTimeout('void()', 3000);
  if (currentcolor < bgcolors.length-1) {
    //alert('trying');
    currentcolor++
    if (firstTime) {
      firstTime = false;
      setTimeout('backgroundChanger()', 1000);
    } else {
      setTimeout('backgroundChanger()', 50);
    }
  }
}


//-->

