<!-- //

x=-230;
y=-230;
function startAnimGlobe()
{
	timer=setInterval("animGlobe()",25);
}

function animGlobe()
{
	x+=8;
	y+=5;
	divName = eval("globe");

	if (isIE)
	{
		document.all.globe.style.pixelLeft = x;
		document.all.globe.style.pixelTop = y;
	}
	
	if (isNav)
	{
		document.globe.left = x;
		document.globe.top = y;
	}
	
	if ((x+125)>screen.width)
	{
		clearInterval(timer);
		swapInGif();
	}
}

function swapInGif()
{
	pics=document.all.tags("img");
	pics[0].src = "frames/qanim.gif";
	about=eval("bodyitem0");

	if (viewing==0)
	{
		setVisibility(about,'visible');
	}
}

// -->
