function initSlideshow() {
	$('#foto').cycle({
		fx:     'fade',
		timeout: 4500,
		speed:	 1500,
		next:   '#next', 
		prev:   '#back'
	});
}
function showButtons() {
	$('#sfeer').hover(function(){
		$(this).children('#back').toggle();
		$(this).children('#next').toggle();
	});
}
function initSlideshowlaag() {
	$('#fotolaag').cycle({
		fx:     'fade',
		timeout: 4500,
		speed:	 1500
	});
}
