﻿ jQuery(document).ready(function() {
    GetPage("/2009/_xml/dziwnepytaniedata.aspx?page=0");
 });
 
 function GetPage(page) {
     var current = 0;
     jQuery("#tab_" + current).html("<span class=\"load\">ładowanie...</span>");
     jQuery("#tab_"+current).addClass("load");
     jQuery.ajax({
                 type: "GET",
                 url: page,
                 cache: false,
                 dataType: "html",
                 success: function(dane) {
                 jQuery("#tab_" + current).html(dane);
                 },
                 complete: function(){
                 jQuery("#tab_" + current).removeClass("load");
                 }
         });
     }

     function play(id,obj, mp3) {
         jQuery(".listen").show();
         var obj = jQuery(obj);
         obj.hide();
         jQuery(".player").html("");
         
         var src = "/2009/_swf/player4p.swf?dzwiek=" + mp3;
         _obj = new SWFObject(src, "mp3", "214", "22", 8, "#ffffff;");
         _obj.addParam("wmode", "transparent");
         _obj.write("p_" + id);
     }
