function home() { // home

	$.get("home.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#home').fadeIn('slow');
	});

}
function en_home() { // en home

	$.get("en_home.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#home').fadeIn('slow');
	});

}
function com1() { // kontakt

	$.get("kontakt.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#kontakt').fadeIn('slow');
	});

}

function en_com1() { // en kontakt

	$.get("en_kontakt.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#kontakt').fadeIn('slow');
	});

}

function com2() { // oferta

	$.get("oferta.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#oferta').fadeIn('slow');
	});

}

function en_com2() { // en oferta

	$.get("en_oferta.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#oferta').fadeIn('slow');
	});

}

function com3() { // onas

	$.get("onas.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#o-nas').fadeIn('slow');
	});

}

function en_com3() { // en onas

	$.get("en_onas.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#o-nas').fadeIn('slow');
	});

}

function com4() { // studio

	$.get("studio.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#studio').fadeIn('slow');
	});

}

function en_com4() { // en studio

	$.get("en_studio.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#studio').fadeIn('slow');
	});

}

function com5() { // news

	$.get("aktualnosci.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#news_pl').fadeIn('slow');
		$(".new-item p img").lightBox();
	});

}
function en_com5() { // en news

	$.get("en_aktualnosci.php?inc=1", function(data) {
		$('#center').html();
		$('#center').html(data);
		$('#news_en').fadeIn('slow');
		$(".new-item p img").lightBox();
	});

}

