function swapImages(){
	var $active = $('#webshop .activeimg');
	var $next = ($('#webshop .activeimg').next().length > 0) ? $('#webshop .activeimg').next() : $('#webshop img:first');
	$next.fadeIn(2000, 'linear').addClass('activeimg');
	$active.fadeOut(2000, 'linear', function(){
		$active.removeClass('activeimg');
	});
}

$(document).ready(function(){
	setInterval('swapImages()', 5000);
});
