$(function(){
	$('a.lightbox').lightBox({fixedNavigation:true});
	$("a#fancyvideo").fancybox({'type':'youtube', 'width': 640, 'height':400});		

	$('div.home-actie-item').click(function(){
		location.href = '/'+$(this).attr('id')+'.htm';
	});

	$('div.left-actie-item').click(function(){
		location.href = '/'+$(this).attr('id')+'.htm';
	});

	$('div.left-actie-item-active').click(function(){
		location.href = '/'+$(this).attr('id')+'.htm';
	});

	$('div.logo').click(function(){
		location.href = '/';
	});

	$('div.project-item').click(function(){
		var id = $(this).attr('id');
		var link = $('a#link-'+id).attr('href');
		location.href = link;
	});

});
