function moveLogo(Valor) {
	if (Valor != 100){
		document.getElementById("spanLogo").className = "Logo" + Valor;
		setTimeout("moveLogo(" + (Valor-10) + ")", 60);
	} else {
		document.getElementById("spanLogo").style.top = "-100px";
	}
}
function arrumaPosicao(Obj, left1024, left1280){
	if (screen.width >= 1280){
		document.getElementById(Obj).style.left = left1280;
	} else {
		document.getElementById(Obj).style.left = left1024;
	}
}
