$(document).ready(function() {
	
	$(".section").css('display','none');
	$(".section:first").show();
		
	
	$("#m1").click(function(){$(".section:visible").hide();$("a.active").removeClass('active');$("#mistrzowie").show();$("#m1").addClass('active');return false;});
	$("#m2").click(function(){$(".section:visible").hide();$("a.active").removeClass('active');$("#kluby").show();$("#m2").addClass('active');return false;});
	$("#m3").click(function(){$(".section:visible").hide();$("a.active").removeClass('active');$("#historia").show();$("#m3").addClass('active');return false;});
	$("#m4").click(function(){$(".section:visible").hide();$("a.active").removeClass('active');$("#team").show();$("#m4").addClass('active');return false;});
	$("#m5").click(function(){$(".section:visible").hide();$("a.active").removeClass('active');$("#kontakt").show();$("#m5").addClass('active');return false;});
	
	});
	
