$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 6,
        path: "Examples/Example 1/slideshow_images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<div style="font-size:17px; margin-top:0px; font face=Verdana">Valle de la Paz, un lugar para Descansar</div>',
            2:'<div style="font-size:17px; margin-top:0px; font face=Verdana">Capilla Santo Domingo</div>',
            3:'<div style="font-size:17px; margin-top:0px; font face=Verdana">Área de Criptas del Valle del Descanso</div>',
            4:'<div style="font-size:17px; margin-top:0px; font face=Verdana">Jardin de Descanso</div>',
            5:'<div style="font-size:17px; margin-top:0px; font face=Verdana">Capilla Solemnis</div>',
            6:'<div style="font-size:17px; margin-top:0px; font face=Verdana">Interior Capilla San Pedro</div>'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"",
            2:"",
            3:"",
            4:"",
            5:"",
            6:""
        },
        linksOpen:'newWindow',
        timerInterval: 5000, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

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

})
