$(document).ready(function() {
	var working_dir = window.location.pathname;
	var color = "#a4b333";
	
	if(working_dir.match("food")) {
		color = "#991e33";
	}
	else if(working_dir.match("drink")) {
		color = "#2a83bd";
	}
	else if(working_dir.match("sweets")) {
		color = "#663a79";
	}
	else if(working_dir.match("pairings")) {
		color = "#cc7627";
	}
	else if(working_dir.match("reportage")) {
		color = "#d2ac2b";
	}
	else {
		color = "#a4b333";
	}
	
	// Add the Color In
	$('#footer, body').css('background-color', color);

});
