$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 4,
        path: "/slideshow_images/",  // Relative path with trailing slash.
        captions: {                 
            1:'',
            2:'',
            3:'',
            4:''
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"/accessible-sites",
            2:"/future-proof-websites",
            3:"/e-commerce-cms-websites",
            4:"/mobile-friendly-websites"
         },
        linksOpen:'newWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
	randomise: true // Start with random image?
    };

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

})
