jQuery(function(){
	jQuery('.slideshow img:gt(0)')
		.hide();
		setInterval(function(){
			jQuery('.slideshow :first-child')
			.fadeOut('slow')
			.next('img')
			.fadeIn('slow')
			.end()
			.appendTo('.slideshow');},
			6000);
});
