// JavaScript Document

	function iluminar(id) {
		document.getElementById(id).style.backgroundColor = "#ffffff";
		document.getElementById(id).style.backgroundImage = "url(x_site/color.jpg)";
		document.getElementById(id).style.border = "1px solid #dddddd";
	}
	
	function oscurecer(id) {
		document.getElementById(id).style.backgroundImage = "none";
		document.getElementById(id).style.backgroundColor = "#ffffff";
		document.getElementById(id).style.border = "1px solid #333333";
	}	
