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