jwplayer('mediaspace_plg_66_0').setup({ playlist: [{ file: '/`karenwolfson/PODCASTS/part_one_csl_sarasota_introduction_1.mp3', duration: '2186' }], width: '100%', height: '23px', modes: [{ type: 'flash', src: '/media/plg_sermonspeaker_jwplayer5/player.swf' }, { type: 'html5' }, { type: 'download' }], autostart: true, controlbar: 'bottom', events: events: { onPlaylistItem: function(event) { for (var i = 0; jQuery("#sermon" + i).length; i++) { jQuery("#sermon" + i).removeClass("ss-current"); } jQuery("#sermon" + event.index).addClass("ss-current"); var entry = jwplayer().getPlaylistItem(); if (entry.duration & gt; 0) { time = new Array(); var hrs = Math.floor(entry.duration / 3600); if (hrs & gt; 0) { time.push(hrs); } var min = Math.floor((entry.duration - hrs * 3600) / 60); if (hrs == 0 || min & gt; = 10) { time.push(min); } else { time.push("0" + min); } var sec = entry.duration - hrs * 3600 - min * 60; if (sec & gt; = 10) { time.push(sec); } else { time.push("0" + sec); } var duration = time.join(":"); jQuery("#playing-duration").html(duration); } else { jQuery("#playing-duration").html(""); } jQuery("#playing-pic").attr("src", entry.image); if (entry.image) { jQuery("#playing-pic").show(); } else { jQuery("#playing-pic").hide(); } if (entry.error) { jQuery("#playing-error").html(entry.error); jQuery("#playing-error").show(); } else { jQuery("#playing-error").hide(); } jQuery("#playing-title").html(entry.title); jQuery("#playing-desc").html(entry.description); } } });