function mouseIn(id) {
  elem1 = document.getElementById("req1").getElementsByTagName("a")[0];
  elem2 = document.getElementById("req2").getElementsByTagName("a")[0];
  path = "/templates/ugenergostroy";
  if (id==1){
    elem1.style.background = "url('"+path+"/images/btn_bg_zayavka.png')";
    elem1.style.color = "#fff";
    elem1.style.textDecoration = "none";
    elem2.style.background = "none";
    elem2.style.color = "#44909d";
    elem2.style.textDecoration = "underline";
  }
  else {
    elem2.style.background = "url('"+path+"/images/btn_bg_zayavka.png')";
    elem2.style.color = "#fff";
    elem2.style.textDecoration = "none";
    elem1.style.background = "none";
    elem1.style.color = "#44909d";
    elem1.style.textDecoration = "underline";
  }
}

window.onload = function(){
mouseIn(1);
}
