// Set up our options for the slideshow...
var myOptions = {
    noImages: 6, // Number of images
    path: "slideshow_images/", // Relative path with trailing slash.
    captions: { // HTML can be included in the captions.
        1: '<b>Amanda Bent Bolt Office</b></div>',
        2: 'Pencils unsharpened',
        3: 'Books',
        4: 'Blackboard',
        5: 'Colored Pencils',
        6: 'Dictionary'
    },
    links: { // Should the images link anywhere? if no links are required at all then this option can be omitted.
        1:"http://www.amandabentbolt.com",
        2:"http://www.yahoo.com",
        3:"",
        4:"http://www.jquery.com",
        5:"http://www.youtube.com",
        6:""
    },
    linksOpen:'newWindow', // How to open links? sameWindow or newWindow.
    timerInterval: 5500, // 5500 = 5.5 seconds
    randomise: false // Start with random image? true=yes/false=no
};

// Initiate the Easy Slides plugin, assigning it to your contaner DIV...
$('#slideshow_container').easySlides(myOptions);
