var load_method = (window.ie ? 'load' : 'domready');
window.addEvent('domready', function() {
	var W = +screen.width-60;
	var H = +screen.height-200;
	var WItem = W*0.2-12;
	var WLvl = W*0.2-27;
	$('menu').setStyles({
		'width':W*0.2
	});
	$('right_menu').setStyles({
		'width':W*0.2
	});
	$('container').setStyles({
		'width':+screen.width-40
	});
	document.getElements('.menu_cat').setStyles({
		'width':W*0.2
	});
	document.getElements('.menu_item,.menu_item_act').setStyles({
		'width':WItem
	});
	
	document.getElements('.menu_item_lvl,.menu_item_lvl_act').setStyles({
		'width':WLvl
	});
	
	$('news').setStyles({
		'width':W*0.6
	});
	document.getElements('.name').setStyles({
		'width':W*0.6-105
	});
	document.getElements('.text').setStyles({
		'width':W*0.6-30
	});
	document.getElements('.new,.more').setStyles({
		'width':W*0.6
	});
	
	var myTips = new Tips('.Rpic');
	document.getElements('.Rpic').store('tip:text', 'натисни за голям размер');
	document.getElements('.Rpic').addEvent('click',function(){
		var myValues = this.getCoordinates();

		var body = $(document.body);
		var pic=this.get('src');
		var newdiv= new Element('div',{
			'html': '<img src=\'newsBigPic/'+pic+'\'>',
			'styles': {
	        'display': 'block',
	        'border': '10px solid #2F4F4F',
	        'position': 'absolute',
	        'top':myValues['top']-100,
	        'left':myValues['left']-300
	        
	    },
	    'events': {
	        'click': function(){
	            this.dispose();
	        }
		}
	});
		newdiv.inject(body , 'top');	
	});
	function scrl(){
		var all =$('all').getStyle('height').toInt();
		if(all>=900){
			$('all').setStyles({
				'height':'912px',
				'overflow-y':'auto'
			});
		}
	}
	scrl();
});