(function($){
	$(function(){
		$('#slideshow').css({
			width: $('#slideshow').eq(0).width(),
			height: $('#slideshow').eq(0).height(),
			position: 'relative',
			top: 0,
			left: 0
		}).children('img').css({
			position: 'absolute',
			top: 0,
			left: 0
		}).show();
		
		var len = $('#slideshow img').length;
		for(var i = 0; i < len - 1; i++){
			$('#slideshow img').eq(i + 1).prependTo($('#slideshow'));
		}
		setInterval(function(){
			$('#slideshow img').eq(len - 1).animate({opacity: 0}, 500, function(){
				$(this).prependTo($('#slideshow')).css({opacity: 1});
			})																			
		}, 2500);
	});
})(jQuery);
