var ani = {
	circle1: {
		type:	'left',
		from:	-500,
		to:		screen.availWidth,
		step:	1,
		delay:	50
	},
	circle2: {
		type:	'left',
		from:	-300,
		to:		screen.availWidth,
		step:	2,
		delay:	50,
	},
	circle3: {
		type:	'left',
		from:	-100,
		to:		screen.availWidth,
		step:	1,
		delay:	50
	},
	circle4: {
		type:	'left',
		from:	-225,
		to:		screen.availWidth,
		step:	2,
		delay:	50
	},
	circle5: {
		type:	'left',
		from:	-300,
		to:		screen.availWidth,
		step:	3,
		delay:	50,
	},
	circle6: {
		type:	'left',
		from:	-1000,
		to:		screen.availWidth,
		step:	1,
		delay:	50
	},
    circle7: {
		type:	'left',
		from:	-50,
		to:		screen.availWidth,
		step:	1,
		delay:	50
	},
	circle8: {
		type:	'left',
		from:	-50,
		to:		screen.availWidth,
		step:	2,
		delay:	50,
	},
	circle9: {
		type:	'left',
		from:	-400,
		to:		screen.availWidth,
		step:	2,
		delay:	50
	},
	circle10: {
		type:	'left',
		from:	-22,
		to:		screen.availWidth,
		step:	2,
		delay:	50
	},
	circle11: {
		type:	'left',
		from:	-30,
		to:		screen.availWidth,
		step:	3,
		delay:	50,
	},
	circle12: {
		type:	'left',
		from:	-100,
		to:		screen.availWidth,
		step:	1,
		delay:	50
	},
	circle13: {
		type:	'left',
		from:	-22,
		to:		screen.availWidth,
		step:	5,
		delay:	50
	},
	circle14: {
		type:	'left',
		from:	-30,
		to:		screen.availWidth,
		step:	5,
		delay:	50,
	},
	circle15: {
		type:	'left',
		from:	-100,
		to:		screen.availWidth,
		step:	5,
		delay:	50
	},

};

function startAnimation(){
	$fx('#circle1').fxAdd(ani.circle1).fxRun(null,-1);
	$fx('#circle2').fxAdd(ani.circle2).fxRun(null,-1);
	$fx('#circle3').fxAdd(ani.circle3).fxRun(null,-1);
	$fx('#circle4').fxAdd(ani.circle4).fxRun(null,-1);
	$fx('#circle5').fxAdd(ani.circle5).fxRun(null,-1);
	$fx('#circle6').fxAdd(ani.circle6).fxRun(null,-1);
	$fx('#circle7').fxAdd(ani.circle7).fxRun(null,-1);
	$fx('#circle8').fxAdd(ani.circle8).fxRun(null,-1);
	$fx('#circle9').fxAdd(ani.circle9).fxRun(null,-1);
	$fx('#circle10').fxAdd(ani.circle10).fxRun(null,-1);
	$fx('#circle11').fxAdd(ani.circle11).fxRun(null,-1);
	$fx('#circle12').fxAdd(ani.circle12).fxRun(null,-1);
	$fx('#circle13').fxAdd(ani.circle13).fxRun(null,-1);
	$fx('#circle14').fxAdd(ani.circle14).fxRun(null,-1);
	$fx('#circle15').fxAdd(ani.circle15).fxRun(null,-1);
}
