// JavaScript Document
function changeColor(id)
{
	
	var el = document.getElementById(id);
	el.style.backgroundColor="#bb5455";
	
	//alert(el);
	
}
function resetColor(id)
{
	var el = document.getElementById(id);
	el.style.backgroundColor="#990000";	
}