var $ls,$cpr,cph;
(function(window, undefined) {
var $ = window.jQuery,$window = $(window),bussy=false;

function fix_height() {
	if (bussy) return;
	var w = $window.height();
	bussy=true;
	if (w > $ls.height()+cph) 
		{
		$cpr.css('margin','-18px 0 0');
		$ls.height(w-cph);
		}
	else
		$cpr.css('margin','0 0 0');
	bussy=false;	
}

    $(function($) {
		var i256=256;
		if ($.browser.msie && $.browser.version.substr(0,1)<7) i256=276;
        $ls = $('#laba_sleja');
		$cpr=$('#cpr');
		cph=$cpr.height()+i256;
		fix_height();
		$("#cpr").show();
		$ls.css('visibility','visible');
	});
	
	$window.load(function() {
        $window.resize(fix_height);
        fix_height();
		//$("#cpr").show();
    });
})(window);

