$(document).ready(function() {
	$(".menu").parent().css({padding: 0, margin: 0});
	$("#left .menu").parent().parent().css("padding",0);
	$("#right .menu").parent().parent().css("padding",0);

	if ($("#left").height() < 20 || $("#left").width() == 0) {
		$("#left").css({
			width: 0,
			height: 0,
			padding: 0,
			margin: 0,
			border: 'none'
		});
	}

	if ($("#right").height() < 20 || $("#right").width() == 0) {
		$("#right").css({
			width: 0,
			height: 0,
			padding: 0,
			margin: 0,
			border: 'none'
		});
	}

	$("#center").width($("#middle").width()-$("#left").outerWidth(true)-$("#right").outerWidth(true));

	if ($("#header_background").hasClass('cycle'))
		$("#header_background").css('background','none');

	height = $('#left').height()-$('#center').height()
	if (height>0)
		$('#center > .middle').height($('#center > .middle').height()+height-10);
	else
		$('#left > .box:last').height($('#left > .box:last').height()-height+10);
});

