$(document).ready(function() {
	
	$(function(){
		$('.slideshow img:gt(0)').hide();
		function nextImg(){
		  $('.slideshow :first-child').fadeOut()
			 .next('img').fadeIn()
			 .end().appendTo('.slideshow');}
		$('#nextImg').click(function() {
			nextImg();
		});
	});
	
});
