
function show_image(x)
{
	$('img.bigimage').not('img#bigimage'+x+'').fadeOut();
	$('img#bigimage'+x+'').fadeIn();
	
	$('.thumblistpage a').removeClass('active');
	$('.thumblistpage a#thumb'+x+'').addClass('active');
	
}

function show_thumbs(x)
{
	// schuif de balk naar positie x
	$('#thumblistslide').animate({left: x*-450});
}

function go_project(event)
{
	var link = $(event.target).closest('a');
	link.attr('href', link.attr('href')+'/'+link.attr('id').replace('home',''));
	return true;
}
