$(document).ready( function() {
	cur = $('.portimg1:first');
	setInterval(function() {
		$(cur).each( function() {
			$(this).fadeOut('2000', function() {
			if (!$(this).next().is('div.portimg1')) {
				$('.portimg1:first').fadeIn('2000');
				cur = $('.portimg1:first');
				} else {
				$(this).next('.portimg1').fadeIn('2000');
				cur = $(cur).next();}			
			});
		});
	},10000);
	
});
