// ==UserScript==
// @name           Wretch HotKey
// @namespace      http://www.goston.net/
// @description    Wretch HotKey 2007.04.27 17:00
// @include        http://*.wretch.cc/album/*
//
// Contact
// =======
// Goston ( http://www.goston.net/ )
// ==/UserScript==

(function() {

var wretchHotKey = new Object();

wretchHotKey.doHotKey = function() {

    var bodyElm = document.getElementsByTagName('body')[0];
    bodyElm.setAttribute('OnKeyUp','');

    var re = /http:\/\/(www\.)?wretch\.cc\/album\/show\.php/;
    if( re.test(document.location) )
    {
        bodyElm.setAttribute('OnKeyUp','show_hotkey(event, show_hotkey_parameters);');
    }
    else
    {
        bodyElm.setAttribute('OnKeyUp','link_hotkey(event, link_hotkey_parameters);');
    }
    bodyElm.setAttribute('onDragStart','');
    bodyElm.setAttribute('oncontextmenu','');
    bodyElm.setAttribute('onSelectStart','');
}

wretchHotKey.doHotKey();

})();
