$(window).load(function() {
    function startBallOne() {
        $("#blue-ball1").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        });
    }
    
    function startBallTwo() {
        $("#blue-ball2").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        })
    }
    
    function startBallThree() {
        $("#blue-ball3").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        }).fadeIn();
    }
	
	    function startBallFour() {
        $("#blue-ball4").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        }).fadeIn();
    }
	
	    function startBallFive() {
        $("#blue-ball5").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        }).fadeIn();
    }
	
	    function startBallSix() {
        $("#blue-ball6").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        }).fadeIn();
    }
	
	function startBallSeven() {
        $("#blue-ball7").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        }).fadeIn();
    }
    
	function startBallEight() {
        $("#blue-ball8").circulate({
            speed: 500,
            height: 100,
            width: -300,
            sizeAdjustment: 10,
            loop: true,
            zIndexValues: [1, 1, 3, 3]
        }).fadeIn();
    }        
    startBallOne();
    setTimeout(startBallTwo, 250);
    setTimeout(startBallThree, 500);
	setTimeout(startBallFour, 750);
	setTimeout(startBallFive, 1000);
	setTimeout(startBallSix, 1250);
	setTimeout(startBallSeven, 1500);
	setTimeout(startBallEight, 1750);
    
});
