$(document).ready(function(){
	$('#clients').cycle({ 
		fx: 'scrollHorz',
		timeout: 0, 
		next: '#next', 
		prev: '#prev',
		speed: 500,
		after: onAfter
	});
	$('.relatedcasecycle').cycle({ 
		fx: 'scrollHorz',
		timeout: 0, 
		next: '#relnext', 
		prev: '#relprev',
		speed: 500,
		after: onAfterRelated
	});
	function onAfter(curr, next, opts) {
		var index = opts.currSlide;
		$('#prev')[index == 0 ? 'hide' : 'show']();
		$('#next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
	}
	function onAfterRelated(curr, next, opts) {
		var index = opts.currSlide;
		$('#relprev')[index == 0 ? 'hide' : 'show']();
		$('#relnext')[index == opts.slideCount - 1 ? 'hide' : 'show']();
	}
	$('.related-pages li').each(function () {
		var textSize = Math.round(Math.random()* 20 + 8);
		$(this).css("fontSize", textSize);
	});
	
	$('.fancybox').fancybox({
		'overlayColor'	: "#000000",
		'centerOnScroll': true,
		'padding'		: 0
	});
	$(".fancybox_video").fancybox({
		'overlayColor'	: "#000000",
		'padding'		: 0,
		'autoScale'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'width'			: 800,
		'height'		: 450,
		'type'			: 'swf',
		'centerOnScroll': true	
	});
	
	$(".mierenheuvel").click(function(){
		$.scrollTo(".anthillwerkt",800);
		return false;
	});
});
