$(document).ready(function(){
	
	// zmieniarka zdjec w topie
	$("#zmieniarka").innerfade({
		timeout: 5000
	}).show();
	
	// lightbox
	$('.lightbox').lightbox({
		fileLoadingImage: 		 url_base+'lib/jquery.lightbox/images/loading.gif',
		fileBottomNavCloseImage: url_base+'lib/jquery.lightbox/images/closelabel.gif'
	});
	
	// pngFix
	$(document).pngFix();

});


function newsletter(akcja)
{
	if(akcja == 1)
		var todo = "zapisz";
	else if(akcja == 0)
		var todo = "wypisz";  
	
	$.post(url_base+"mail/newsletter_"+todo+"/"+lang+"/"+Math.random(),{
		email:	$("input[name=newsletter_mail]").val()
	}, function(msg){
		$(".newsletter .linki").hide();
		$(".newsletter .result").html("<strong>"+msg+"</strong>").append("<a href='javascript:newsletter_usuninfo();'>OK</a>");
		$("input[name=newsletter_mail]").val("");
	});
}

function newsletter_usuninfo()
{
	$(".newsletter .result").html("");
	$(".newsletter .linki").show();
}

function mapa()
{
	window.open(url_base+'html/'+lang+'_mapa.html','','toolbar=no,menubar=no,scrollbars=yes,resizable=no,status=no,location=no,directories=no,top=50,left=50,fullscreen=no,height=420,width=560');
}
