// USERJS FILE FOR OPERA 8
// url: 	http://www.operatoday.com/*
// problem: 	external ads script breaks page code
// author: 	scipio
// last update:	2005-05-09

if (window.location.href.indexOf('http://www.operatoday.com')>-1){
	window.opera.addEventListener(
		'BeforeScript',
		function(ev){if (ev.element.text.indexOf('babelfish.altavista.com/babelfish')>-1){ev.preventDefault()}},
		false);
}
