$(function() {
    $("div#makeMeScrollable").smoothDivScroll({
        visibleHotSpots: "always",
        autoScroll: "onstart",
        autoScrollDirection: "backandforth",
        autoScrollStep: 1,
        autoScrollInterval: 60,
        startAtElementId: "startAtMe",
        scrollStep: 8,
        scrollInterval: 20
     });
     $('#ftHolder').show(1);
     $('#ft').jqFancyTransitions({
         effect: 'wave',
         width: 300,
         height: 160,
         navigation: true,
         links : false
     });
});

function pokaz_produkt(id_produktu) {
    $("#produkt").hide(0);
    $("#loading").show(1);
    $("#loading").show(1000);
    $("#loading").show(1000);
    $.ajax({
        type : 'POST',
	url : 'ajax_response.php',
	dataType : 'html',
	data: {
            prodid : id_produktu,
            action : "produkt"
	},
	success : function(data){
            $("#produkt").html(data);
            $("#loading").hide(0);
            $("#produkt").show(200);
	},
	error : function(XMLHttpRequest, textStatus, errorThrown) {
            window.alert("Informacja: Wystąpił błąd w komunikacji z bazą danych");
            $("#loading").hide(0);
            $("#produkt").show(0);
	}
    });
}
