jQuery.ajaxSetup({contentType: "application/x-www-form-urlencoded; charset=utf-8"});

$(document).ready(function(){

});


/* all functions */
function showPage(ID) {
	$('#wrapper').fadeOut('slow', function () {
		$('#wrapper').removeClass('motyle');
		$('#wrapper').html('<div id="title"><img src="/data/img/loader.gif" alt="" style="vertical-align: middle" /> trwa wczytywanie...</div>');
		$('#wrapper').fadeIn('slow');
		
		$.ajax({
			type: "POST",
			url: "inc/ajax_show_page.php",
			data: "ID="+ID,
			success: function(msg){
				$('#wrapper').fadeOut('slow', function () {
					$('#wrapper').hide();
					$('#wrapper').addClass('motyle');
					$('#wrapper').html( msg );
					
					$('#wrapper').fadeIn();
					$("#wrapper #content .scrolling").jScrollPane();
					
					// GALERIA
					$("div.gallery .photo a").fancybox({ 'hideOnContentClick': true, 'overlayShow': false });
				});
			}
		});
	});
}


function showContinent(ID) {
	$('#popup').fadeOut('slow', function () {
		$('#popup').html('<div id="title">trwa wczytywanie...</div>');
		$('#popup').fadeIn('slow');
		
		$.ajax({
			type: "POST",
			url: "inc/ajax_show_continent.php",
			data: "ID="+ID,
			success: function(msg){
				$('#popup').html( msg );
				$("#popup #content .scrolling").jScrollPane();
				$("#popup #close").click(function(){ $("#popup").fadeOut(); })
			}
		});
	});
}

