$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 10,
        path: "uploads/easyslider/images/",  // Relative path with trailing slash.
        captions: {                 
        1: 'Caption 1',
        2: 'Caption 2',
        3: 'Caption 3',
        4: 'Caption 4',
        5: 'Caption 5',
        6: 'Caption 6',	
	    7: 'Caption 7',
        8: 'Caption 8',
        9: 'Caption 9',
        10: 'Caption 10'
        },
        timerInterval: 8000, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
