// JavaScript Document

function ge(id) {
  return document.getElementById(id);	
}

function cc(id, c) {
  var e = ge(id);
  e.setAttribute('class', c);
  e.setAttribute('className', c);
}