window.onload = function() {
	$(function()
	{
		$('#slideshow img:gt(0)').hide();
		setInterval(function()
		{
		  $('#slideshow :first-child').fadeOut('slow')
			 .next('img').fadeIn(1).end().appendTo('#slideshow');
		}, 2000);
	})
};

