


window.onload = function(){
		
	//init content height at homepage
	/*var cell = document.getElementById('middle_cell');//  Coment By Nikita
	var content = document.getElementById('content_node');
	if (content.offsetHeight < cell.offsetHeight ) 
		content.style.height = (parseInt(cell.offsetHeight) - 82) + 'px';*/
	/*var content = document.getElementById('content_node');
	content.style.height = '220px';*/
	
	/*if (content.offsetHeight < cell.offsetHeight ) 
		content.style.height = (parseInt(cell.offsetHeight) - 82) + 'px';*/
}


function setShadow(i)
{
  var div = document.getElementById('panel_'+i);
		div.onmouseover = function(){ this.className = "shadow_panel_block dark_shadow";}
		div.onmouseout = function(){ this.className = "shadow_panel_block";}
		//div.style.cursor = "pointer";
  
}
