// Slideshow
$(function(){
	var imgs = $('#intro-photo img');
	var current = 0;
	var next = 1;
	
	// Show the first image
	imgs.hide();
	imgs.eq(current).show();
	
	var timer = setInterval(function(){
		// Swap photos
		imgs.eq(current).fadeOut(1000);
		imgs.eq(next).fadeIn(1000);
	
		// Increment
		current = next;
		next = current < imgs.length-1 ? current+1 : 0;
	}, 4000);
});

// Popup
$(function(){
	var popup = $('#popup');
	setTimeout(function(){ popup.fadeIn() }, 2000);
	$('#popup-close').click(function(){
		popup.fadeOut();
	});
});
