// title
var title = new Array("|FFM2D1-CLAN====|",
                      "|=FFM2D1-CLAN===|",
                      "|==FFM2D1-CLAN==|",
                      "|===FFM2D1-CLAN=|",
                      "|====FFM2D1-CLAN|",
                      "|===FFM2D1-CLAN=|",
                      "|==FFM2D1-CLAN==|",
                      "|=FFM2D1-CLAN===|",
                      "|FFM2D1-CLAN====|");

// other vars
var suffix = " A German Fun-Clan";
var delay  = 200;
var index  = 0;

/**
 * Animate the title.
 */
function animate ()
{
  // update title
  document.title = title[index]+suffix;

  // update index
  if (++index >= title.length)
    index = 0;

  // repeat
  setTimeout ("animate()", delay);
}

// do the thing
animate ();
