$(document).ready(function() {
	//Skracanie menu górnego
	if($(".topNav").length) {
		while($(".topNav > li:first").position().top != $(".topNav > li:last").position().top) {
			$(".topNav > li:last, .topNav > li.separator:last").remove();
		}
	}

	//Usuwanie pustych kolumn bocznych
	if(!$("#left").children().length) $("#left").remove();
	if(!$("#right").children().length) $("#right").remove();

	//Auto szerokość kolumny center
	$("#center").width($(".middle").width()-$("#left").outerWidth(true)-$("#right").outerWidth(true));
	$("#center").removeClass('hidden');

	//Przyciski wyszukiwarki
	$('.search_form span.submit_button').button({
		icons: {primary: "ui-icon-search"},
		text: false
	}).click(function(){
		$(this).parent().submit();
	});
});

