$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 3,
        path: "img/slider/",  // Relative path with trailing slash.
        captions: {                 
            1:'<b>Ya Records is ON AIR !!!.</div>',
            2:'<b>Doc Dilo - Co-founder and Artist Manager.</div>',
            3:'<b>KruLyaN - Beatmaker / Producer.</div>'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://www.dilobio.com",
            2:"http://www.krulbio.com",
            3:""
        },
        linksOpen:'newWindow',
        timerInterval: 5500, // 5500 = 5.5 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#slider_container').easySlides(myOptions);

})
