$(function(){
	if(kontakt_sklepy_on) $("#kontaktAdresy").hide();
	$("#mapaContent").hide();
	$("#firmaContent").hide();
	if(!kontakt_sklepy_on) $("#sklepyContent").hide();
	
	$(".loadMapa").click(
			function(){
				$("#kontaktAdresy").hide();
				$("#firmaContent").hide();
				$("#mapaContent").show();
				$("#sklepyContent").hide();
				return false;	
			});
		
	$(".loadInf").click(
			function(){
				$("#kontaktAdresy").hide();
				$("#firmaContent").show();
				$("#mapaContent").hide();
				$("#sklepyContent").hide();
				return false;	
			});
		
	$(".loadKontakt").click(
			function(){
				$("#kontaktAdresy").show();
				$("#firmaContent").hide();
				$("#mapaContent").hide();
				$("#sklepyContent").hide();
				return false;	
			});
		
	

});
