
{
var PosT = 5;
var PosL = 20;
var PosV = 1;
function MVE()
	{
	PosL = PosL + PosV;
	if (PosL == 80){PosV = -1;document.getElementById('img0').src = 'images/Global Header.gif'};
	if (PosL == 20){PosV = 1};
	document.getElementById('imgGlobe').style.left = PosL;
	setTimeout("MVE()", 100);
	}
}

