$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 6,
        path: "http://www.lawyerkansascitymo.com/images/slideshow_images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<b>The Historic Scarritt Arcade at 819 Walnut Street.</b>',
            2:'<b>Evening appointments are available.</b>',
            3:'<b>Conveniently located downtown, minutes from the Plaza.</b>',
            4:'<b>Effective representation requires thorough research.</b>',
            5:'<b>Strong courtroom advocacy begins with persuasive legal writing.</b>',
            6:'<b>Attention to the details of your predicament.</b>'
        },
        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: 9000, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

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

})
