	
	var xpos = 1500 ;
	var aptimer = null ;

	function Airplane()
	{
		var airplane = document.getElementById( 'airplane' ) ;
		if( !airplane )
			return ;
		xpos--  ;
		xpos--  ;
		airplane.style.left = ( xpos - 1 ) + 'px' ;
		if( xpos == -400 )
			xpos = 1500 ;
		clearTimeout( aptimer ) ;
		aptimer = setTimeout( 'Airplane()' , 30 ) ;
		
	}