$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 5,
        path: "slideshow/transport/",  // Relative path with trailing slash.
        captions: {                 
            1:'ZBIRNI TRANSPORT',
            2:'KAMIONSKI TRANSPORT',
            3:'ŽELJEZNIČKI TRANSPORT',
            4:'POMORSKO - KONTEJNERSKI TRANSPORT',
            5:'AVIONSKI TRANSPORT'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"zbirni.html",
            2:"kamionski.html",
            3:"zeljeznicki.html",
            4:"pomorski.html",
            5:"avionski.html"
        },
        linksOpen:'',
        timerInterval: 4500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_4_container').easySlides(myOptions);

})
