$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 43,
        path: "slides/",  // Relative path with trailing slash.
        //captions: {                 
        //    1:'didascalia 1',
        //    2:'didascalia 2',
        //    3:'didascalia 3',
        //    4:'didascalia 4',
        //    5:'didascalia 5',
        //    6:'didascalia 6'
        //},
        //links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
        //    1:"http://www.google.com",
        //    2:"http://www.yahoo.com",
        //    3:"",
        //    4:"http://www.jquery.com",
        //    5:"http://www.youtube.com",
        //    6:""
        //},
        //linksOpen:'newWindow',
        timerInterval: 4000, // 6500 = 6.5 seconds
	randomise: true // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#slideshow_container').easySlides(myOptions);

})
