function move_fj() {
   objParent = document.getElementById('fj');
   objForumJump = document.getElementById('forum-jump');
   if (objParent && objForumJump)
     objParent.insertBefore(objForumJump, objParent.firstChild);
}

var alreadyrunflag=0 //flag to indicate whether target function has already been run

if (document.addEventListener)
  document.addEventListener("DOMContentLoaded", function(){alreadyrunflag=1; move_fj()}, false)
else if (document.all && !window.opera){
  document.write('<script type="text/javascript" id="contentloadtag" defer="defer" src="javascript:void(0)"><\/script>')
  var contentloadtag=document.getElementById("contentloadtag")
  contentloadtag.onreadystatechange=function(){
    if (this.readyState=="complete"){
      alreadyrunflag=1
      move_fj()
    }
  }
}

window.onload=function(){
  setTimeout("if (!alreadyrunflag) move_fj()", 0)
}
