
function MueveAvion() {
	var div=document.getElementById('PancartaDescuentos');
	var img=div.firstChild;
	img.style.position='relative';
	var x=img.style.left;
	var xpx=x.indexOf('px', x);
	if (xpx!=-1)
		x=x.substring(0, xpx);
	var maxx=document.body.offsetWidth;
	if (navigator.appName=="Microsoft Internet Explorer")
		maxx-=24;
	div.style.width=maxx;
	var completo=false;
	if (maxx - x < 0) {
		x=-400;
		completo=true;
		//alert(x);
	}

	//if (x - (-401) >= maxx) {
	//	var clipx=maxx-x -1;
	//	if (clipx<0)
	//		clipx=0;
	//	div.style.clip='rect(0px, '+clipx+'px, 71px,0px)';
	//	div.style.width=clipx;
	//}
	
	img.style.left=(x-(-1))+'px';

	//if (completo) {
	//	div.style.clip='rect(0px, 400px, 71px,0px)';
	//	div.style.width='400px';
	//	completo=false;
	//}

	setTimeout('MueveAvion()', 50);
}
