$(document).ready(function() {
	var myOptions = {
    noImages: 5, // Number of images
    path: "../photos/gallery2/easy/", // Relative path with trailing slash.
    captions: { // HTML can be included in the captions.
        1: '',
        2: '',
        3: '',
        4: '',
        5: ''
    },
    links: { // Should the images link anywhere? if no links are required at all then this option can be omitted.
        1:"",
        2:"",
        3:"",
        4:"",
        5:""
    },
    linksOpen:'newWindow', // How to open links? sameWindow or newWindow.
    timerInterval: 3000, // 6500 = 6.5 seconds
    randomise: false // Start with random image? true=yes/false=no
};

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