$(document).ready(function(){
	$('#fadein img:gt(0)').hide();
    
	$("#nextImage").click(function () {
		$('#fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('#fadein');
	});
    
	$("#previousImage").click(function () {
		$('#fadein :first-child').fadeOut()
		$('#fadein :last-child').fadeIn().prependTo('#fadein');
	});
});
