// ==UserScript==
// @name blizzcon.com - Prevent browser detection mistake
// @author Øystein R. Ryen 
// @namespace http://userjs.org/ 
// @version 1.0
// @description  Allows access to the photo galleries to work on
//			blizzcon.com.
// @ujs:category site: fixes
// @ujs:published 2005-11-10 00:10
// @ujs:modified 2005-11-10 00:20
// @ujs:documentation http://userjs.org/scripts/site/fixes/blizzcon-com-prevent-detection 
// @ujs:download http://userjs.org/scripts/download/site/fixes/blizzcon-com-prevent-detection.js
// ==/UserScript==


/* 
 * This script is granted to the Public Domain.
 */

if (location.hostname.match(/^(www\.)?blizzcon\.com$/i)) {
  window.opera.defineMagicFunction('checkIt',function () {return 0;});
  window.opera.addEventListener( 'BeforeScript', function (e) {
    e.element.text = e.element.text.replace(/document\.all\.{0}/g,'0');
  },false);
}
