function setPlay(mp3, obj) {
            var currentobj = jQuery(obj);
            jQuery(document).ready(function() {
                var firstTitle = jQuery('ul#podcast > li > p:first > span.title').text();
                var mp3title;

                if (obj == 'first') {
                    mp3title = firstTitle;
                }
                else {
                    currentobj.addClass("active");
                    var titlePl = currentobj.parent().find("span.title").text();
                    mp3title = titlePl;
                }

                var src = "/_cms/_swf/mp3player.swf?dzwiek=/" + mp3 + "&mp3title=" + mp3title;

                if (src) {
                    _obj = new SWFObject(src, "smallPlayMp3", "293", "33", 8, "#333333");
                    _obj.addParam("wmode", "transparent");
                    _obj.write("mp3player");
                }
            });
        }
