$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 6,
        path: "/images2011/",  // Relative path with trailing slash.
/* If captions or links are needed, insert them between the quotes below. Can include HTML links.
        captions: {                 
            1:'',
            2:''            
        },
      
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"",
            2:""            
        },
*/      linksOpen:'newWindow',
        timerInterval: 5000, // 3000 = 3 seconds
	randomise: false // Start with random image?
    };

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

})
