function init(){
	if(window.getScrollHeight() > window.getHeight()) return;
	var ch = window.getHeight() - 399;
	document.getElementById('content').style.height = ch + "px";
}

var opened = false;
function onToggleClients(){
	opened = !opened;
	$('toggler').className = (opened) ? "toggle_opened" : "toggle_closed";
}

function toggleClients(){
	var eh = (opened) ? 0 : 133;
	new Fx.Style('pulldown_strecher', 'height', {duration:500,onStart:onToggleClients}).start(eh);
}

window.onload = init;
window.onresize = init;
