$(document).ready(function(){
	if ($('#l1').length > 0)
	{
		$('#l1').cycle();
	}
	
	$("a[rel=fotoboek]").lightBox({
		imageLoading: '/images/lightbox-ico-loading.gif',
		imageBtnClose: '/images/lightbox-btn-close.gif',
		imageBtnPrev: '/images/lightbox-btn-prev.gif',
		imageBtnNext: '/images/lightbox-btn-next.gif'

	});
	
	var imgh = 0;
	$('ul#fotoboek li img').each(function() {
		imgh = Math.max($(this).height(), imgh);
	});
	$('ul#fotoboek li').height(imgh);	
});

