function moveNavigationAnimation(oNavigation) {

	this.oNavigation = oNavigation;	
	this.iCurrentLeft = 300;
	this.iIndex = animationHandler.addAnimation(this);	

}

moveNavigationAnimation.prototype.process = function() {
	
	if(this.iCurrentLeft >= 0) {
				
		this.oNavigation.style.left = this.iCurrentLeft + 'px';					
		this.iCurrentLeft -= 10;
				
	}
	else {		
				
		this.oNavigation.style.position = 'static';
		this.stop();		
		
	}

}

moveNavigationAnimation.prototype.stop = function() {

	animationHandler.removeAnimation(this.iIndex);
	
}