  ghrSign = new Image();
  ghrSign.src = blogurl + "/wp-content/themes/ghr2/sign/big_ghr_sign.png";
  
  ghrSign.onLoad = initSign();

  blinkcounter = 0;
  var newtimer;

  function initSign()
  {
    sign = document.getElementById("header_graphic");
    sign.src = blogurl + "/wp-content/themes/ghr2/sign/big_ghr_sign.png";
    
    newtimer = window.setInterval(blinkie2, 280);
  }
  
  function blinkie2()
  {   
    sign = document.getElementById("header_graphic");
    
    topPos = 90 * blinkcounter;
    
    if (blinkcounter < 32)
    {
      sign.style.top = "-" + topPos + "px";
      blinkcounter++;
    }
    else
    {
      sign.style.top = "0px";
      blinkcounter = 0;
    }
  }

