// USERJS FILE FOR OPERA 8
// url:		http://www.demeerse.com/*
// problem: 	scroll mechanism doesn't work
// author:	scipio
// last update: 2005-04-28

if (window.location.href.indexOf('http://www.demeerse.com/')>-1){
	window.opera.addEventListener(
		'AfterEventListener.load',
		function(){
			var str=document.getElementById('clipLayer');
			if (str) str.style.overflow='auto';
			str=document.getElementById('ContentLayer');
			if (str) str.style.width='90%';
			str=document.getElementsByTagName('img');
			if (str){
				for (var i=0;i<str.length;i++){ 
					if(str[i].getAttribute('name')=='ScrollDownButton'||str[i].getAttribute('name')=='ScrollUp'){
						str[i].style.visibility='hidden';
					}
				}
			}
		},
		false);
}
