
function set_bg_color(id)
{
var item = document.getElementById(id);

item.style.backgroundColor = '#E4E4E6';

}


function reset_bg_color(id)
{
var item = document.getElementById(id);

item.style.backgroundColor = '#ECECEE';

}
