var ani = {
	stage: {
		type:	'left',
		from:	-250,
		to:		-250,
		step:	-10,
		delay:	10,
		onstart: function(){
			this.style.display = 'block';
	}
	}
	};

function startAnimation(){

	$fx('#stage').fxAdd(ani.stage).fxHold(2600).fxRun();
	
}
