jQuery(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 2,
        path: "http://www.cashadvance.com.au/wp-content/themes/solutions/Examples/Example 1/slideshow_images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<h1 style="font-size:30px;">Running Low on Funds?</h1> <div style="font-size:14px;margin-top:15px;margin-left:20px;margin-right:20px;"><b>&#34;Friday morning I realised I didn&#39;t have enough cash to get through the weekend. I had a cash advance by end of play that day.&#34;</b><br/><br/>Anna Edwards - satisfied customer</div>',
            2:'<h1 style="font-size:30px;">Get back into the swing.</h1> <div style="font-size:14px;margin-top:15px;margin-left:20px;margin-right:20px;"><b>&#34;Cash Advance really came through for me. Now I can replace the transmission and have a golf weekend with the boys.&#34;</b><br/><br/>Jeff Dowsing - satisfied customer</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.cashadvance.com.au/",
            2:"http://www.cashadvance.com.au/"
        },
        linksOpen:'newWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
	randomise: false // Start with random image?
    };

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

})
