var activeSrc = '';

function showItem(_id) {
	$('#' + _id).fadeIn(200);
}

//$(document).ready(function(){
	
	$(function() {
		$('a[@rel*=lightbox]').lightBox({txtImage: 'Afbeelding',txtOf: 'van'});
	});
	
	$('#tekst p').each(function(i) {
		$(this).hide();
		setTimeout('showItem("' + $(this).attr('id') + '")', 150 * i);
	});
	
	$('#pics img').each(function(i) {
		$(this).hide();
		setTimeout('showItem("' + $(this).attr('id') + '")', 400 * i);
	});
	
	$('#picthumbs li').each(function(i) {
		$(this).hide();
		setTimeout('showItem("' + $(this).attr('id') + '")', 210 * i);
	});
	
	$('#picthumbs a').each(function() {
		$(this).click(function() {
			activeSrc  = $(this).attr('href');
			$('#bigpic').fadeOut(200, function() {
				$('#bigpic').attr('src', activeSrc);
				$('#bigpic').fadeIn();
			});
			return false;
		});
	});
	
//});
