function efeito_x(){
	var banner = document.getElementById('imganima');
	b=window.setTimeout(
		function (){ 
			GLOBAL_width = GLOBAL_width+10;
			if(GLOBAL_width>=0){
				GLOBAL_width = -465;
				clearTimeout(b);
			}else{
				banner.style.backgroundPosition=GLOBAL_width+'px 0px';
				efeito_x();
			}
		}, 5
	);
}
function efeito_y() {
	var banner = document.getElementById('imganima');
	b=window.setTimeout(
		function (){ 
			GLOBAL_height = GLOBAL_height+5;
			if(GLOBAL_height>=0){
				GLOBAL_height = -155;
				clearTimeout(b);
			}else{
				banner.style.backgroundPosition='-2px '+GLOBAL_height+'px';
				efeito_y();
			}
		}, 5
	);
}