﻿$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 8,
        path: "slideshow/usluge/",  // Relative path with trailing slash.
        captions: {                 
            1:'LOGISTIKA',
            2:'SKLADIŠTENJE I DISTRIBUCIJA',
            3:'TRANSPORT',
            4:'CARINSKO POSREDOVANJE',
            5:'CARINJENJE NA GRANIČNIM PRIJELAZIMA 0-24',
            6:'KONZALTING',
	    7:'VANJSKOTRGOVINSKO I DEVIZNO POSLOVANJE',
	    8:'PRIVATNI KORISNICI'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"logistika.html",
            2:"skladistenje.html",
            3:"transport.html",
            4:"carina.html",
            5:"carinjenje.html",
            6:"konzalting.html",
	    7:"vanjska.html",
	    8:"privatni.html"
        },
        linksOpen:'',
        timerInterval: 4500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_3_container').easySlides(myOptions);

})
