// ==UserScript==
// @name           ChatReSize
// @author         Kasza Zsolt
// @description    sorkollektor.hu chat áthelyező-átméretező
// @version        Opera
// @include        http://www.sorkollektor.hu/*
// ==/UserScript==

if(location != 'http://www.sorkollektor.hu/?page_id=6849') {
  if(window.opera) document.addEventListener('load', function (e) {
    var d = document.getElementById('chatoutput');  
    d.setAttribute('style', 'width: 234px; position: fixed; top: 0px; left: 4px; z-index: 10;');
    d = document.getElementById('chatbarText');  
    d.setAttribute('style', 'width: 248px; position: fixed; top: 254px; left: 4px; z-index: 10;');
    d.rows = '2';
    d = document.getElementById('SmileyList');
  //  d.setAttribute('style', 'position: fixed; top: 310px; left: 4px; background-color: #ffffff; width: 248px;');
  }, false); else {
    var d = document.getElementById('chatoutput');  
    d.setAttribute('style', 'width: 234px; position: fixed; top: 0px; left: 4px; z-index: 10;');
    d = document.getElementById('chatbarText');  
    d.setAttribute('style', 'width: 248px; position: fixed; top: 254px; left: 4px; z-index: 10;');
    d.rows = '2';
  }
}