$(document).ready(function(){
    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 3,
        path: "/pliki/slides/",  // Relative path with trailing slash.
        captions: {     
3:'<b>15-16.10 Warszawa</b> <div style="font-size:10px;margin-top:5px;">Free Form Festival </div>',
2:'<b>09.10.2010 Katowice</b> <div style="font-size:10px;margin-top:5px;">Najstarszy festiwal bluesowy w Polsce</div>',
1:'<b>11.09 Inowroc³aw  </b> <div style="font-size:10px;margin-top:5px;">ANATHEMA / OZRIC TENTACLES / AIRBAG / VOTUM</div>',
5:'<b></b<div style="font-size:14px;margin-top:5px;"></div>',
6:'<b></b> <div style="font-size:14px;margin-top:5px;"></div>'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
3:"http://www.ticketon.pl/index.html?grp=4100",
2:"http://www.ticketon.pl/index.html?grp=3901",
1:"http://www.ticketon.pl/index.html?grp=4125",
            5:"",
            6:""
        },
        linksOpen:'inframe',
        timerInterval: 4500, // 5500 = 6.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#container').easySlides(myOptions);

})