// JavaScript Document

	//alert(x)
	function on(x) {  
	myObj = document.getElementById(x)	
	myObj.style.color = "#FFFFFF";
	myObj.style.backgroundColor = "#DECBA0";
	}
	
	//---------
	//  off()
	//---------
	function off(x){  
		myObj = document.getElementById(x);
	   myObj.style.color = "#FFFFFF";		
		myObj.style.backgroundColor = "#351d01";
	}