// JavaScript Document
$(function() {
	$('#foto_referenties_detail a').lightBox(); 
});

function setKeywords(keyword)
	{
	$("#keywords_list > ul > li").removeClass();
	$("#keywordsphotos > div").removeClass('show').addClass('hide');
	$("#keywordstext > div").removeClass('show').addClass('hide');
	
	switch(keyword)
		{
		case "coaching":
			$("#key-coaching").addClass("active");
			$("#photo-coaching").removeClass('hide').addClass('show');
			$("#text-coaching").removeClass('hide').addClass('show');
			break;

		case "harmonie":
			$("#key-harmonie").addClass("active");
			$("#photo-harmonie").removeClass('hide').addClass('show');
			$("#text-harmonie").removeClass('hide').addClass('show');
			break;

		case "innovatie":
			$("#key-innovatie").addClass("active");
			$("#photo-innovatie").removeClass('hide').addClass('show');
			$("#text-innovatie").removeClass('hide').addClass('show');
			break;

		case "communicatie":
			$("#key-communicatie").addClass("active");
			$("#photo-communicatie").removeClass('hide').addClass('show');
			$("#text-communicatie").removeClass('hide').addClass('show');
			break;
		}
	}



