$(document).ready(function(){

// Set up our options for the slideshow...
var myOptions = {
    noImages: 5, // Number of images
    path: "slider/", // Relative path with trailing slash.
    captions: { // HTML can be included in the captions.
		1: '<b> For hardened hands, not the hard of heart.</b>',
        2: '<b>Courage, above all things, is the first quality of a warrior.</b><span style="font-size:10px"> -Karl Von Clausewitz</span>',
        3: '<b>Take arrows in your forehead, but never in your back.</b><span style="font-size:10px"> -Miyamoto Musashi</span>',
        4: '<b>Beautiful, Powerful.</b>',
        5: '<b>Use your head, or somebody else might.</b>'
    },
            links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://warriorgrip.com",
            2:"",
            3:"",
            4:"",
            5:"",
            6:""
        },
    linksOpen:'newWindow', // How to open links? sameWindow or newWindow.
    timerInterval: 9900, // 6500 = 6.5 seconds
    randomise: true // Start with random image? true=yes/false=no
};

// Initiate the Easy Slides plugin, assigning it to your contaner DIV...
$('#slideshow_container').easySlides(myOptions);

})

