/*-- 画像ロールオーバー処理 --*/
function smartRollover() {
  if(document.getElementsByTagName) {
    var images = document.getElementsByTagName("img");

    for(var i=0; i < images.length; i++) {
      if(images[i].getAttribute("src").match("_off.")) {
        images[i].onmouseover = function() {
          this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
        }
        images[i].onmouseout = function() {
          this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
        }
      }
    }
  }
}

if(window.addEventListener) {
  window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
  window.attachEvent("onload", smartRollover);
}


/*-- アクセス解析 --*/
acc1 = "<img src='http://www.craft-r.com/common/cgi/acc/acclog.cgi?";
acc2 = "referrer="+document.referrer+"&";
acc3 = "width="+screen.width+"&";
acc4 = "height="+screen.height+"&";
acc5 = "color="+screen.colorDepth+"' border='0' width='1' height='1' alt='' />";


/*-- クリップボードにコピー --*/
function clip_copy() {
  if (document.all && navigator.userAgent.match(/windows/i) && document.obj.area.value) {
    copy_obj = document.obj.area.createTextRange()
    copy_obj.execCommand("Copy");
  }
}
