var light = "#ffffff";
var dark = "#B6B6B6";

var pageNo = 1;	// this is just incase the code does not work

function setMenu() {
	document.getElementById(currentPage).style.backgroundColor = dark;
	document.getElementById(currentPage).style.color = light;
}
	
function menuActive(id, flag) {
	if(id != currentPage) {
		if(flag) {
			document.getElementById(currentPage).style.backgroundColor = light;
			document.getElementById(currentPage).style.color = dark;
			document.getElementById(id).style.backgroundColor = dark;
			document.getElementById(id).style.color = light;
		} else {
			document.getElementById(currentPage).style.backgroundColor = dark;
			document.getElementById(currentPage).style.color = light;
			document.getElementById(id).style.backgroundColor = light;
			document.getElementById(id).style.color = dark;
		}
	}
}