//prevent stupid adlinks from appearing
 window.opera.addEventListener('BeforeExternalScript',
 	function (e) {
      if( e.element.getAttribute('src').match(/intellitxt\.com\/intellitxt\/front\.asp/) ) {
        e.preventDefault();
      }
    },
    false
 );
