//front page animations

jQuery(document).ready(function()	{

	jQuery('.front-count-5').animate({
		opacity: 1
	}, 700, function()	{
		jQuery('.front-count-5').hide();
		jQuery('.front-count-6').animate({
			opacity: 1
		}, 700, function()	{
			jQuery('.front-count-6').hide();
			jQuery('.front-count-7').animate({
				opacity: 1
			}, 700, function()	{
				jQuery('.front-count-7').hide();
				jQuery('.front-count-8').animate({
					opacity:1
				}, 700, function()	{
					jQuery('.front-count-8').animate({
						opacity:0
					}, 500);
					jQuery('.front-logo').animate({
						top:0
					}, 1500, 'easeOutBounce', function()	{
						jQuery('.front-stars').animate({
							opacity:1
						}, 3000, function()	{					
							jQuery(function($) {
						        timer = setTimeout(starShine, 0);
							});
							
							function starShine()	{
								jQuery('.front-stars').animate({
									opacity: 0.2
								}, 2000, function()	{
									jQuery('.front-stars').animate({
										opacity: 1
									}, 2000, function ()	{
										timer = setTimeout(starShine, 0);
									});
								});
							}							
						});
					});
				});
			});
		});
	});
});
