$(document).ready(function(){
	
	$('#image1').fadeIn("slow");


	$('#image1').click(function () {
		$(this)
			.fadeOut("slow")
			.animate({opacity: 1.0}, 3000)
			.remove(); 
		$('#image2').fadeIn("slow");
	});
	
	$('#image2').click(function () {
		$(this)
			.fadeOut("slow")
			.animate({opacity: 1.0}, 3000)
			.remove(); 
			
		$('#image3').fadeIn("slow");
	});
	
	$('#image3').click(function () {
		$(this)
			.fadeOut("slow")
			.animate({opacity: 1.0}, 3000)
			.remove(); 
			
		$('#image4').fadeIn("slow");
	});

});
