// h2.fla - naglowek.swf
$(document).ready(function() {
  $(".fla").each(function (i) {
     $(this).attr("id", "h2FLA" + i);
     var txt = $.trim($(this).text());
     var width = $(this).width();
     var height = $(this).height();
     swfobject.embedSWF("_flash/naglowek.swf", "h2FLA" + i, width, 1.4*height, "8.0.0", "", {tresc: txt}, {wmode: "transparent"}, {});
  });
});

// h2.fla-big - naglowek.swf
$(document).ready(function() {
  $(".fla-big").each(function (i) {
     $(this).attr("id", "h2FLABig" + i);
     var txt = $.trim($(this).text());
     var width = $(this).width();
     var height = $(this).height();
     swfobject.embedSWF("_flash/naglowek2.swf", "h2FLABig" + i, width, 1.4*height, "8.0.0", "", {tresc: txt}, {wmode: "transparent"}, {});
  });
});