function Slideshow(container, slides, interval) {
       $(container + ' ' + slides + ':gt(0)').hide(); //hide all images below first
       //set an interval for the action to take place
    		setInterval(function(){
       			$(container + ' ' + slides + ':first').fadeOut(1000) //fade first img 1 second out
         		.next(slides).fadeIn(1000) //fade next image in 1 second and...
         		.end().appendTo(container);}, //append the first image to end
      		interval); //interval set at 4 seconds
      }
