$(document).ready(function(){
// Set up our options for the slideshow...
var myOptions = {
	noImages: 10,
   	path: "img/",  // Relative path with trailing slash.
    links: { // Should the images link anywhere? if no links are required at all then this option can be omitted.
        1:"http://www.omzweb.it/prodotti-per-cani.html",
        2:"http://www.omzweb.it/prodotti-per-cani.html",
        3:"http://www.omzweb.it/prodotti-per-volatili.html",
        4:"http://www.omzweb.it/prodotti-per-volatili.html",
        5:"http://www.omzweb.it/prodotti-per-pollame.html",
        6:"http://www.omzweb.it/prodotti-per-pollame.html",
        7:"http://www.omzweb.it/prodotti-per-pollame.html",
        8:"http://www.omzweb.it/prodotti-per-cavalli.html",
        9:"http://www.omzweb.it/prodotti-per-cavalli.html",
        10:"http://www.omzweb.it/prodotti-per-cavalli.html"
    },
    timerInterval: 3000, // 6500 = 6.5 seconds
	randomise: true // Start with random image?
	};
// Woo! We have a jquery slideshow plugin!
$('#slides_container').easySlides(myOptions);
})
