function set_semenu(){
  btn_obj = document.getElementById("semenu").getElementsByTagName("a");
  for (var i=0; i<btn_obj.length; i++) {
    btn_obj[i].onclick = function() { change_pic(this); return false };
  }
}

function change_pic(obj){
  for (var i=0; i<btn_obj.length; i++) {
    btn_obj[i].className = "";
  }
  obj.className = "crnt";
  document.getElementById("picobj").src = obj.href;
}

onload_items[onload_items.length] = set_semenu;

