function klickNavi(para) {	document.getElementById("n1").className="std";	document.getElementById("n2").className="std";	document.getElementById("n3").className="std";	document.getElementById("n4").className="std";	document.getElementById("n5").className="std";	document.getElementById("n6").className="std";	document.getElementById("n7").className="std";	document.getElementById(para).className="act";}function stick() {setTimeout("position()",100); }wannabepos=1;actypos=1;function position() {if (document.all){ wannabepos=document.body.scrollTop+1; }else { wannabepos=window.pageYOffset+1; }if (wannabepos<10 ) { wannabepos=1; }setTimeout("position()",10);action(); }function action() {actypos=actypos+(wannabepos-actypos)/20;if (document.all) {xwidth=document.body.scrollWidth;document.all.stick.style.top=actypos;document.all.stick.style.left=((xwidth-15)/2)-450; }else if (document.getElementById){xwidth=window.innerWidth;document.getElementById("stick").style.top=actypos;document.getElementById("stick").style.left=((xwidth-15)/2)-455; }else if (document.captureEvents && !document.getElementById){xwidth=window.innerWidth;document.layers.stick.top=actypos;document.layers.stick.left=((xwidth-15)/2)-455; }}
