$(document).ready(function(){
   // Set up our options for the slideshow...
   var myOptions = {
   noImages: 5, // Number of images
   path: "include/gallery/displayimgs/", // Relative path with trailing slash.
   captions: { // HTML can be included in the captions.
        1: '<p>Our aim is to develop a sustainable solution that benefits everyone</p>',
        2: '<p>Our solutions aid economic development in remote developing communities</p>',
        3: '<p>e.quinox energy kiosks are designed to be financially and environmentally sustainable </p>',
        4: '<p>e.quinox was voted to win the $50,000 J.P Morgan Give-It-Away awards in 2011</p>',
        5: '<p>e.quinox is completely student run from design through to implementation</p>'
   },
//   links: {
//   // Should the images link anywhere? if no links are required at all then this option can be omitted.
//        1:"",
//        2:"",
//        3:"",
//        4:""
//    },
    linksOpen:'newWindow', // How to open links? sameWindow or newWindow.
    timerInterval: 10000, // 6500 = 6.5 seconds
    randomise: true // Start with random image? true=yes/false=no
   };

   // Initiate the Easy Slides plugin, assigning it to your contaner DIV...
   $('#slideshow_container').easySlides(myOptions);
});

