$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 6,
        path: "images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<b>Counters</b>',
            2:'<b>Kiosks</b>',
            3:'<b>Towable Trailers</b>',
            4:'<b>Greggs</b>',
            5:'<b>The Gourmet Hotdog</b>',
            6:'<b>The Gourmet Hotdog</b>',
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://www.srl-countertech.co.uk/food_service_counters.php",
            2:"http://www.srl-countertech.co.uk/food_kiosks.php",
            3:"http://www.srl-countertech.co.uk/catering_retail_trailers.php",
            4:"http://www.srl-countertech.co.uk/food_kiosks.php",
            5:"http://www.srl-countertech.co.uk/food_kiosks.php",
            6:"http://www.srl-countertech.co.uk/mobile_carts.php",
        },
        linksOpen:'newWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
	randomise: true // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
