
var left_box_height = 0;
var content_height = 0;

$(document).ready(function() {
	//debug bar
	$("#debug a.close").click(function() {
		$("#debug").addClass('hidden');
	});

	mapBaseActions();
	StaticTextPaging();
	
	left_box_height = $(".left_box").height();
	content_height = $(".content").height() + 87;
	
	//alert(left_box_height+" "+content_height);
	
	if (left_box_height>content_height) {
		//lewy wiekszy
		var diff = left_box_height - content_height;
		$(".content .bottom .bg").css('padding-bottom',diff+'px');
	}
	else {
		//prawy wiekszy
		var diff = content_height - left_box_height - parseInt($(".left_box .bottom .bg").css('padding-bottom'));
		$(".left_box .bottom .bg").css('padding-bottom',diff+'px');
	}
	
});

