// IE以外でもwindow.eventを利用できるようにする
if(navigator.userAgent.indexOf("MSIE") == -1) { // IE以外のモダンなブラウザなら.
    (function(){
        for (var property in Event.prototype){
            if(property.match(/MOUSE|CLICK/)){
                window.addEventListener(property.toLowerCase(), function(e){
                    window.event = e;
                }, true);
            }
        }
    }());
};
