
function getCurrentChapter(){
	var urlPath = location.pathname;
	var urlPathArray = urlPath.split('/');
	var currentChapter = urlPathArray[urlPathArray.length - 2];
	return currentChapter;
}

function colorize(){
	var color;

	switch (getCurrentChapter()){
		case "home":
			color = '68c036'
			break;
		case "reehorst":
			color = 'b11a07'
			break;
		case "wereldreizen":
			color = 'd7751a'
			break;
		case "presentaties":
			color = '87c4d9'
			break;
		case "deelnemers":
			color = 'ffb800'
			break;
		case "contact":
			color = '763f97'
			break;
			
		default:
			color = '68c036';

	}
	
	$(".contentBar").css("background-color", "#" + color);
	$(".bottomBar").css("background-color", "#" + color);
	$(".content h1").css("color", "#" + color);
	$(".content h2").css("color", "#" + color);
	$(".content strong").css("color", "#" + color);
	$(".content").css("border-left", "1px solid #" + color);
	$(".content").css("border-right", "1px solid #" + color);
	$(".content p a").css("color", "#" + color);
}

$(document).ready(function(){
	colorize();
});



