
/*
Static menu script II (By maXimus, maximus@nsimail.com, http://absolutegb.com/maximus/)
*/

function move(x) {
if (document.all) {
object1.style.pixelLeft += x;
object1.style.visibility = "visible"}
else if (document.layers) {
document.object1.left += x;
document.object1.visibility = "show"}};

function makeStatic() {
if (document.all) {object1.style.pixelTop=document.body.scrollTop+100}
else {eval(document.object1.top=eval(window.pageYOffset+100));}
setTimeout("makeStatic()",0);}
