var ani = {
	
background: {
		type:	'opacity',
		from:	0,
		to:		100,
		step:	1,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
background2: {
		type:	'opacity',
		from:	0,
		to:		100,
		step:	2,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
	
	
	
circle: {
		type:	'opacity',
		from:	0,
		to:		100,
		step:	2,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
	
	
	
	
	
	
	
	
};

function startAnimation(){
	
	
	$fx('#processbackground').fxAdd(ani.background).fxHold(1000).fxRun(function(){
				$fx('#processcircle').fxAdd(ani.circle).fxHold(100).fxRun(function(){
						$fx('#processtext').fxAdd(ani.background2).fxHold(100).fxRun();
							
				
		});
		});
		
	
	
	
	

}