$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 7,
        path: "/Images/Main/NewBuilding/",  // Relative path with trailing slash.
        captions: {                 
            1:'&pound;35m flagship learner centre opens September 2011',
            2:'City centre state-of-the-art facilities',
            3:'Linking college campus together with centralised customer support services',
            4:'Recreational, leisure and learning facilities to share',
            5:'Wireless technology and open learning resources',
            6:'Central resource for student support services',
			7:'State of the art IT facilities'
        },
        links: { // Each image number must be listed here, unless no links are required at all, then links option can be ommitted.
            1:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/",
            2:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/",
            3:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/",
            4:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/",
            5:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/",
            6:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/",
			7:"http://www.liv-coll.ac.uk/AboutTheCollege/CollegeCentres/the_learning_exchange/"
        },
        linksOpen:'sameWindow',
        timerInterval: 6500, // 6500 = 6.5 seconds
		randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#slide_show').easySlides(myOptions);

})