$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
        noImages: 6,
        path: "easyslide/img/",  // 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.employeerecognitionplaques.com",
            2:"http://www.employeerecognitionplaques.com/index.php?route=product/category&path=35",
            3:"http://www.employeerecognitionplaques.com/index.php?route=product/category&path=36",
            4:"http://www.employeerecognitionplaques.com/index.php?route=product/category&path=37",
            
        },
        linksOpen:'newWindow',
        timerInterval: 8000, // 8000 = 8.0 seconds
	randomise: false // Start with random image?
    };

    // Woo! We have a jquery slideshow plugin!
    $('#example_1_container').easySlides(myOptions);

})
