$(document).ready(function(){
	
	$("a[rel='external']").attr('target','_blank');
	
	
	if($('.imagewrapper').length) {
		$('.imagewrapper .foto').hide();
		$('.imagewrapper .foto:first').show();
		
		setTimeout("fadeFotos()", 2000);
	}
});

function fadeFotos() {
	current = $('.imagewrapper .foto:visible');
	next = current.next('img.foto');
	
	next.fadeIn(750, function(){
		current.hide();
		current.insertAfter(".imagewrapper .foto:last");
		setTimeout("fadeFotos()", 4000);
	});
	
}
