var x = "n";
function activateGlue(){
	x = "y";
}
function glue(){
	if(x=="y"){
		var distTop = document.body.scrollTop;
		var distLeft = document.body.scrollLeft;
		if (document.all || document.getElementById){
			document.getElementById("floatmenu").style.top=(distTop+15)+"px";
			document.getElementById("floatmenu").style.left=(parseInt(distLeft)+(document.body.scrollWidth-800)/2-25)+"px";
		}
	}
}
setInterval("glue()",10);