$(document).ready(function(){
			//Define the animation speed for the Carousel 
			var speed = 600; 
			$('#navPrev').click(function(){ 
					//As the rest of our carousel is hidden, lets move it's margin left until
					//it's in view
					//We use the jQuery animate() function give this movement a nice smooth feel
			    $('#slideshow ul').animate({ marginLeft: '1px' }, speed);
			    $('#slideshow2 ul').animate({ marginLeft: '1px' }, speed);
			    $('#slideshowWithBigPicture ul').animate({ marginLeft: '1px' }, speed);
			}); 
			$('#navNext').click(function(){ 
					//And now lets move back to the start of the Carousel 
			    $('#slideshow ul').animate({ marginLeft: '-230px' }, speed);
			    $('#slideshow2 ul').animate({ marginLeft: '-230px' }, speed);
			    $('#slideshowWithBigPicture ul').animate({ marginLeft: '-200px' }, speed);
			});
})
