$(document).ready(function() {
	$(".menu").find(".content").first().css("border", "none");
	$(".menu").parent().css({
		padding: 0,
		margin: 0
	});
	$("#left .menu").parent().parent().css("padding",0);
	$("#right .menu").parent().parent().css("padding",0);
	
	if ($("#left").height() == 0 || $("#left").width() == 0) {
		$("#left").css({
			width: 0,
			height: 0,
			padding: 0,
			margin: 0,
			border: 'none'
		});
	}

	if ($("#right").height() == 0 || $("#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));

	//Zmiana przycisków
	$("input[type='submit'], input[type='button'], button").button();
});
