function in_array(what, where) {
  for (var i = 0; i < where.length; i++) {
    if (what == where[i]) return true;
	}
  return false;
}

ge = function(id) {
	return(document.getElementById(id));
}
ce = function(tag) {
	return(document.createElement(tag));
}
