var defImg;
var url = "http://static.nexon.co.jp/mabinogi/6th_img/common/";
var url02 = "http://static.nexon.co.jp/mabinogi/6th_img/community/icon/";

function ImgChange(target, name){
  if(document.getElementById){
    defImg =  document.getElementById(target).getAttribute("src");
	img = url + name;
    document.getElementById(target).setAttribute("src", img);
  }
}
function ImgChange02(target, name){
  if(document.getElementById){
    defImg =  document.getElementById(target).getAttribute("src");
	img = url02 + name;
    document.getElementById(target).setAttribute("src", img);
  }
}
function ImgBack(target){
  if(document.getElementById){
    document.getElementById(target).setAttribute("src",defImg);
  }
}


