$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 5,
        path: "http://www.frithsopticians.co.uk/MyFiles/Images/homepage-slideshow/",  // Relative path with trailing slash.
        linksOpen:'_parent',
		links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"",
            2:"http://www.frithsopticians.co.uk/shop/",
            3:"http://www.frithsopticians.co.uk/practices/blandford_forum/",
			4:"",
			5:"http://www.frithsopticians.co.uk/shop/",
        },
        timerInterval: 4500, // 6500 = 6.5 seconds
	randomise: true // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
