$(document).ready(function() {
	$("#slideshow").css("overflow", "hidden");
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		random: 1,
		height: '160px',
		width: '240px',
		fit: 1,
		randomizeEffects: 1
	});
	
	if ($("#innercontent").height() < $(document).height())
	{
		$("#container").height($(document).height()-175);
	}
	else
	{
		$("#container").height($("#innercontent").height()+75);
	}

	$("a[rel=nieuwsimgFancy]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'type'				: 'image',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Afbeelding ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});

});


