$(document).ready(function() {

	nextHeaderImage = function() {
		var img = $('#headerimage-container img:visible');
		var nextImg = img.next('img');
		if (!nextImg.length) {
			nextImg = img.siblings().first();
		}
		img.fadeOut('slow');
		nextImg.fadeIn('slow')
		window.setTimeout(nextHeaderImage, 8000);
	}
	
	if ($('#headerimage-container img').length > 1) {
		setTimeout(nextHeaderImage, 8000);
	}
});


