function initialize(){
fixedobj=document.all? document.all.staticlinx : document.getElementById? document.getElementById("staticlinx") : document.layers? document.staticlinx : 0

windowheight=window.innerHeight? window.innerHeight : document.body.clientHeight

if (!fixedobj)
return

if (document.all || document.getElementById){

linkheight=fixedobj.offsetHeight
setInterval("staticit_dom()",50)
fixedobj.style.visibility="visible"
}
else if (document.layers){

linkheight=fixedobj.document.height
setInterval("staticit_ns()",50)
fixedobj.visibility="show"
}
}

function staticit_dom(){

var pageoffsety=document.all? document.body.scrollTop : window.pageYOffset



fixedobj.style.left=0
fixedobj.style.top=pageoffsety+22-linkheight

}

function staticit_ns(){
fixedobj.left=0
fixedobj.top=pageYOffset+22-linkheight
}