$(document).ready(function() {
});


function showProd(str) {
	$('#tresc').fadeOut(function() {
		$.ajax({
			type: "POST",
			url: "showProd.php",
			dataType: 'html',
			data: "id=" + str,
			async: true,
			success: function(data){
				$('#tresc').html(data).fadeIn();
				$('.lightbox').lightBox({fixedNavigation:true});
			}
		});
	});
}

function showProdlist(str)
{
	$('#tresc').fadeOut(function() {
		$.ajax({
			type: "POST",
			url: "showProdlist.php",
			dataType: 'html',
			data: "id=" + str,
			async: true,
			success: function(data){
				$('#tresc').html(data).fadeIn();
			}
		});
	});
}

function showAkt(str)
{
	$.ajax({
		type: "POST",
		url: "akt.php",
		dataType: 'html',
		data: "id=" + str,
		async: false,
		success: function(data){
			document.getElementById("tresc").innerHTML=data;
		}
	});
}

function showSerwis(str)
{
	$.ajax({
		type: "POST",
		url: "showSerwis.php",
		dataType: 'html',
		data: "id=" + str,
		async: false,
		success: function(data){
			document.getElementById("serwisy").innerHTML=data;
		}
	});
}

function showSprzedaz(str)
{
	$.ajax({
		type: "POST",
		url: "showSprzedaz.php",
		dataType: 'html',
		data: "id=" + str,
		async: false,
		success: function(data){
			document.getElementById("serwisy").innerHTML=data;
		}
	});
}


