var BBHide = Class.create();

BBHide.prototype = {                       

	initialize : function() {
		Object.extend(window, this);		
		$($('forum__ctl0__ctl0_AddSmiley')).hide();
		
		$($('forum__ctl0_EditorLine').down('td')).hide();
		$($('forum__ctl0_EditorLine').down('table')).setStyle({
			height: '200px'
		});
	}
}

Event.observe(window,"load",function(){ new BBHide(); });
