/*
$(document).ready(function(){

    // Set up our options for the slideshow...
    var myOptions = {
		noImages: 4,
		path: "images/slides/",  // Relative path with trailing slash.
		captions: { // HTML can be included in the captions.
		 1: '',
		 2: '',
		 3: '',
		 4: ''
		},
		links: { // Should the images link anywhere? if no links are required at all then this option can be omitted.
		 1:"",
		 2:"",
		 3:"",
		 4:""
		},        
		timerInterval: 4000, // 6500 = 6.5 seconds
		randomise: false // Start with random image?
    };

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

})
*/

$(window).load(function() {
    $('#slider').nivoSlider
    ({
    	effect:'random',
    	slices:4,
    	animSpeed:500,
    	pauseTime:3000,
    	controlNav:false
    });
});


