$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 5,
        path: "slide/slideshow_images/",  // Relative path with trailing slash.
        
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://www.personalscrapper.com/ProductDetails.aspx?ProductID=496",
            2:"http://www.personalscrapper.com/ProductDetails.aspx?ProductID=496",
            3:"http://www.personalscrapper.com/ProductDetails.aspx?ProductID=496",
            4:"http://www.personalscrapper.com/ProductDetails.aspx?ProductID=496",
            5:"http://www.personalscrapper.com/ProductDetails.aspx?ProductID=496"
        },
        linksOpen:'sameWindow',
        timerInterval: 3500, // 6500 = 6.5 seconds
	randomise: true // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#slide_container').easySlides(myOptions);

})