$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 6,
        path: "assets/images/",  // Relative path with trailing slash.
        captions: {                 
            1:'<b>Marymoor Park</b> <div style="font-size:12px;margin-top:5px;">Created for King County Parks in conjunction with Friends of Marymoor.</div>',
            2:'<b>Resilient Habitats in the Greater Everglades Ecoregion</b> <div style="font-size:12px;margin-top:5px;">Detail of a map produced for the Sierra Club Resilient Habitats Campaign.</div>',
            3:'<b>The Alaskan Arctic</b> <div style="font-size:12px;margin-top:5px;">Produced for the Sierra Club Resilient Habitats Campaign.</div>',
            4:'<b>Wild Sky Trails</b> <div style="font-size:12px;margin-top:5px;">Detail of a map showing proposed trails in the newly designated Wild Sky Wilderness Area.</div>',
            5:'<b>Entiat Region Trails</b><div style="font-size:12px;margin-top:5px;">Hiking trails and roadless areas in the Entiat region of Eastern Washington.</div>',
            6:'<b>Seattle 100 Mile Diet</b> <div style="font-size:12px;margin-top:5px;">Detail of a map showing population density and food production within 100 miles of Seattle.</div>'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://coregis.net/assets/portfolio.html",
            2:"http://coregis.net/assets/portfolio.html",
            3:"http://coregis.net/assets/portfolio.html",
            4:"http://coregis.net/assets/portfolio.html",
            5:"http://coregis.net/assets/portfolio.html",
            6:"http://coregis.net/assets/portfolio.html"
        },
        linksOpen:'newWindow',
        timerInterval: 4500, // 4500 = 4.5 seconds
	randomise: true // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
