$(document).ready(function(){
	
	$('#agendaList li').mouseenter(function(){
		$('#agendaList li').stop().animate({opacity:0.25},300);
		$(this).stop().animate({opacity:1},100);
	});
	$('#agendaList').mouseleave(function(){
		$('#agendaList li').stop().animate({opacity:1},300);
	});
	
	$(window).keydown(function(e){
		if(e.which == 37){
			$('#TB_prev a').click();
		}
		if(e.which == 39){
			$('#TB_next a').click();
		}
	});
	
	$('ul#voorstellingList li:nth-child(2n)').css('margin-left','16px');
	
});
