$(document).ready(function(){
	$("#programma_links span").hover(
		function(){
			$(this).stop(true,true).addClass("programma_hover",200);
		},function(){
			$(this).stop(true,true).removeClass("programma_hover",400);
		}
	).click(function(){
		if($("#programma_links span.programma_aan").attr("rel")!=$(this).attr("rel")){
			$("#programma_rechts span:visible").fadeOut(350);
			$("#programma_foto img:visible").fadeOut(350);
			$("#programma_foto img[rel='"+$(this).attr("rel")+"']").css({"z-index":"100"}).fadeIn(350).css({"z-index":"0"});
			$("#programma_rechts span[rel='"+$(this).attr("rel")+"']").fadeIn(350);
			$("#programma_links span.programma_aan").removeClass("programma_aan",350);
			$(this).addClass("programma_aan");
		}
	});
	
	var begin=$("#programma_links span:random");
	$("#programma_foto img[rel='"+begin.attr("rel")+"']").css({"z-index":"100"}).fadeIn(350).css({"z-index":"0"});
	$("#programma_rechts span[rel='"+begin.attr("rel")+"']").fadeIn(350);
	begin.addClass("programma_aan");
	
	$("#plazas li a,#historie_links li a").hover(
		function(){
			$(this).stop(true,true).addClass("hover",200);
		},function(){
			$(this).stop(true,true).removeClass("hover",400);
		}
	);

	$(".fotos a").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '');
		}
	});
});
