function completeCrumble(title)
{
	/* Change last item into the correct link */
	var linkTekst = $('.crumble > ul > li.path-last').text();
	
	switch(linkTekst)
	{
		case "Klanten en cases": 			var url = "/nl/cases"; break;
		case "Vacature overzicht":			var url = "/nl/vacatures"; break;
	}
	
	var lastlink = "<a href=\""+url+"\">";
	lastlink += linkTekst;
	lastlink += "</a>";
	$(".crumble > ul > li.path-last").html(lastlink);
	
	/* Extend the crumblepath with the detail item */
	
	$('.crumble > ul').append("<li class=\"path-last\">"+title+"</li>");
}