function changeImg(id,url_image){
  document.getElementById(id).src = url_image;
}

window.onload = function(){
  //textとtextareaのフィールドのスタイルシートを整える処理
  var inputs = document.getElementsByTagName("input");
  for (i=0; i<inputs.length; i++){
    if(inputs[i].type == 'text'){
      inputs[i].onfocus = function(){
        this.style.backgroundColor='#f7f0e6';
      }
      inputs[i].onblur = function(){
        this.style.backgroundColor='#fdf9f2';
      }
    }
  }
  var inputs = document.getElementsByTagName("textarea");
  for (i=0; i<inputs.length; i++){
    inputs[i].onfocus = function(){
      this.style.backgroundColor='#f7f0e6';
    }
    inputs[i].onblur = function(){
      this.style.backgroundColor='#fdf9f2';
    }
  }
}
