// JavaScript Document
function ChangeFont(c) {
	var which = document.getElementById("container");
	if(c == 1) {
		which.style.color = "#161616";
	} else if (c == 2) {
		which.style.color = "#4A4A4A";
	} else if (c == 3) {
		which.style.color = "#8D8D8D";
	} else if (c == 4) {
		which.style.color = "#101C5F";
	}
}

function ChangeBg(d) {
	var which = document.body;
	if(d == 1) {
		which.style.backgroundColor = "#9A9A9A";
	} else if (d == 2) {
		which.style.backgroundColor = "#f5f6fb";
	} else if (d == 3) {
		which.style.backgroundColor = "#FFFEFF";
	} else if (d == 4) {
		which.style.backgroundColor = "#272727";
	}
}
