$(document).ready(function() {
						   
	$('.slideshow img').each(function() {
		$(this).css({'position':'absolute'}).prependTo('#main-content');
	});
 
	function fadeSlide() {
		$('.slideshow img:last').fadeOut(1000, function() {
			$(this).prependTo('#main-content').show();
		});
	};
 
	slideInterval = setInterval(fadeSlide, 5000);
 
});

