MJL.event.add(window, "load", function(event) {
    MJL.enable.rollover("roll", { disable: "unroll" });
				MJL.enable.heightEqualizer("equalize");
}, false);

// MJL と無関係なコードはこの先に記述

//右クリック禁止

function notes(eve){
if(document.all){
  if(event.button == 2){
  alert("右クリック禁止になっています。画像のコピーはしないでね！");
  return false;
  }
}
if(document.layers){
  if(eve.which == 3){
  alert("右クリック禁止になっています。画像のコピーはしないでね！");
  return false;
  }
}
}

if(document.layers)document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=notes;

