$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 3,
        path: "banner/Examples/Example 1/slideshow_images/",  // Relative path with trailing slash.
       // captions: {                 
            //1:'<b>This is Easy Slides - Possibly the easiest to use jQuery plugin for making slideshows!</b> <div style="font-size:14px;margin-top:5px;">Thank you for trying it out, I hope you will find it useful.</div>',
            //2:'<b>This is the first version of this plugin!</b> <div style="font-size:14px;margin-top:5px;">It features optional captions, linkable images and you can set a random starting image.</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.aplustec.com.br",
            2:"http://www.guiadebutecos.com",
			3:"http://clubea.em.com.br/",
        },
		linksOpen:'newWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

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

})
