
function loadSlideShow()
{
	$(document).ready(function() {
		setTimeout(slideShow, 3000);
	});
}

function slideShow() {
	var current = $('#slideshowphotos .show');
	var next = current.next().length ? current.next() : current.parent().children(':first');
	
	current.hide().removeClass('show');
	next.fadeIn().addClass('show');
	
	setTimeout(slideShow, 3000);
}

