YY = 0;
function fly()
{
	if (YY != 500) {
		YY++;
	}
	else {
		YY = 0;	
	}
	
	document.getElementById("logo").style.backgroundPosition = "0px "+YY+"px";
	t=setTimeout("fly()", 30);
}
