$(document).ready(function() {
    
    function set1() {
    
    $('.box1').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box7').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box10').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    }); 
    
    };
    
    function set2() {
    
    $('.box3').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box6').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box12').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    }); 
    
    };
    
    function set3() {
    
    $('.box2').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box8').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box9').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    }); 
    
    };
    
    function set4() {
    
    $('.box4').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box5').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    });
    
    $('.box11').cycle({
    	fx: 'fade',
    	timeout: 10000,
    	speed: 1000,
    	delay: -4000
    }); 
    
    };
    
    
    
    setTimeout(set1,0);
    setTimeout(set2,3000);
    setTimeout(set3,6000);
	setTimeout(set4,9000);

});

