// global variable for position of the scrolling window
var pos=-540;
function Scroll() {
	if (!document.getElementById) return;
	obj=document.getElementById("mayflogox");
	pos +=20;
	if (pos > obj.offsetWidth-550) return;
	obj.style.left=pos;
	window.setTimeout("Scroll();",30);
}
// Start scrolling when the page loads
window.onload = Scroll;
