// JavaScript Document
$(document).ready(function() {
    
    $('#bigPhoto').cycle({ 
       delay: 100,
       speed: 1000,
       fx: 'fade'
    });
    
    $('#smallPhoto1').cycle({ 
    	delay: 200,
    	speed: 2000,
    	fx: 'fade'
    });
    
    $('#smallPhoto2').cycle({ 
        delay: 300,
        speed: 3000,
        fx: 'fade'
    });
	
	 $('#smallPhoto3').cycle({ 
       delay: 400,
       speed: 4000,
       fx: 'fade'
    });
    
    $('#smallPhoto4').cycle({ 
    	delay: 500,
    	speed: 5000,
    	fx: 'fade'
    });
    
    $('#smallPhoto5').cycle({ 
        delay: 600,
        speed: 6000,
        fx: 'fade'
    });
	$('#smallPhoto6').cycle({ 
        delay: 700,
        speed: 7000,
        fx: 'fade'
    });
	$('#smallPhoto7').cycle({ 
        delay: 800,
        speed: 8000,
        fx: 'fade'
    });
});
