function screenSize() {
    var w, h; // Объявляем переменные, w - длина, h - высота
    w = (window.innerWidth ? window.innerWidth : (document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.offsetWidth));
    h = (window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.offsetHeight));
    return {w:w, h:h};
}
jQuery(document).ready(function(){              // по окончанию загрузки страницы
	hs=screenSize().h-166-117-35-26-jQuery('#headlink').height();
	hb=jQuery('#body').height();
	hl=jQuery('#leftmenu').height();
	hr=jQuery('#rightmenu').height();
	if(hb<hs){jQuery('#body').height(hs); hb=hs;}
	if(hb<hr){jQuery('#body').height(hr); hb=hr;}
	if(hb<hl){jQuery('#body').height(hl); hb=hl;}
	jQuery('#headlink > a:last').addClass("last");
	jQuery('#topmenu > div.separator:last').remove();
	jQuery('ul.leftmenu > div.separatorleft:last').remove();
    jQuery('ul.leftmenu > li').hover(function(){
		jQuery(this).children('ul.sub').slideDown(300);
	},
	function(){
		jQuery(this).children('ul.sub').slideUp(300);
	});
});
