function reposicionaMenu(){
	//IE6 in non-quirks doesnt get document.body.scrollLeft:
	var pos = (document.body.scrollLeft)?document.body.scrollLeft:document.documentElement.scrollLeft;
	document.getElementById("email").style.left = parseInt(pos + 25) + "px";
	document.getElementById("direccion").style.left = parseInt(pos + 25) + "px";
}

onload = function(){
if(document.getElementById && !window.getComputedStyle){// DOM but not Mozilla
	document.getElementById("email").style.position = "absolute";
	document.getElementById("direccion").style.position = "absolute";
	window.onscroll = reposicionaMenu;
	}
}
