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:	1,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
	
	
	
bar1: {
		type:	'opacity',
		from:	0,
		to:		100,
		step:	2,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
bar2: {
		type:	'top',
		from:	-10,
		to:		0,
		step:	1,
		delay:	10,
		unit:	'%',
		onstart: function(){this.style.display = 'block'},
	},
	
	
tabulatext: {
		type:	'opacity',
		from:	0,
		to:		100,
		step:	2,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
	
abouttext1: {
		type:	'opacity',
		from:	0,
		to:		100,
		step:	2,
		delay:	10,
		onstart: function(){this.style.display = 'block'},
		onfinish: function(){this.style.filter = ''}
	},
	
	
abouttext2: {
		type:	'top',
		from:	-20,
		to:		0,
		step:	1,
		delay:	10,
		unit:	'%',
		onstart: function(){this.style.display = 'block'},
	},
	
	
	
	
	
	
	
	
	
	
	
};

function startAnimation(){
	
	
	$fx('#teambackground').fxAdd(ani.background).fxHold(1000).fxRun(function(){
				$fx('#teamtextbackground').fxAdd(ani.background2).fxHold(100).fxRun(function(){
							$fx('#teamtext').fxAdd(ani.abouttext2).fxAdd(ani.abouttext1).fxHold(100).fxRun();});																			
																										
				
		
		});
		
	
	
	
	

}