$(document).ready(function(){
	

	$('a.map').bind('click', function(){
		$('#form, #data').hide();
		$('#map').html('<iframe width="370" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.pl/maps?f=q&amp;hl=pl&amp;geocode=&amp;q=Betoniarzy+1,+Dzierzgo%C5%84&amp;sll=52.025459,19.204102&amp;sspn=9.184941,18.830566&amp;ie=UTF8&amp;g=Betoniarzy+1,+Dzierzgo%C5%84&amp;s=AARTsJrzHHnroufU0yA_IIN8B2kic67QuQ&amp;ll=53.911215,19.340143&amp;spn=0.015167,0.031757&amp;z=14&amp;iwloc=addr&amp;output=embed"></iframe><br /><small><a href="http://maps.google.pl/maps?f=q&amp;hl=pl&amp;geocode=&amp;q=Betoniarzy+1,+Dzierzgo%C5%84&amp;sll=52.025459,19.204102&amp;sspn=9.184941,18.830566&amp;ie=UTF8&amp;g=Betoniarzy+1,+Dzierzgo%C5%84&amp;ll=53.911215,19.340143&amp;spn=0.015167,0.031757&amp;z=14&amp;iwloc=addr&amp;source=embed" style="color:#0000FF;text-align:left">Wyświetl większą mapę</a></small>');
		$('#map').show();
		$('a.map').addClass('active');
		$('a.form').removeClass('active');
		$('a.data').removeClass('active');
	});
	
	$('a.form').bind('click', function(){
		$('#map, #data').hide();
		$('#map').html();
		$('#form').show();
		$('a.form').addClass('active');
		$('a.map').removeClass('active');
		$('a.data').removeClass('active');
	});

	$('a.data').bind('click', function(){
		$('#map, #form').hide();
		$('#map').html();
		$('#data').show();
		$('a.data').addClass('active');
		$('a.map').removeClass('active');
		$('a.form').removeClass('active');
	});

});