jQuery.ajaxSetup({contentType: "application/x-www-form-urlencoded; charset=utf-8"});


$(document).ready(function(){
	$.ifixpng('data/img/pixel.gif'); 
	
	$(".zdjecie").fancybox({ 
		'hideOnContentClick': true 
	}); 
})



function ShowDesc(ID) {
	var box = document.getElementById('desc_'+ID);
	if(box.style.display == 'none') $(box).slideDown('slow'); else $(box).slideUp('slow');
}