var fx3 = new Fx.Morph('page-ball', { fps: 600, duration: 600, transition: Fx.Transitions.Circ.easeOut });
function ballDisplayImage() {
	$('page-ball').setStyles({ opacity : 0 });
	fx3.pause();
	fx3.start({
		opacity : 1,
		top: 58
	}).chain(function(){
		fx3.start({
			top: 53
		}).chain(function(){
			fx3.start({
				top: 58
			});
		});
	});
}
ballDisplayImage();
