// http://jquery.lukelutman.com/plugins/flash/example-mp3.html
jQuery(document).ready(function(){
    jQuery('a[href$="mp3"]').flash(
        { src: '/files/player/singlemp3player.swf', height: 20, width: 100 },
        { version: 7 },
        function(htmlOptions) {
            $this = $(this);
            htmlOptions.flashvars.file = $this.attr('href');
            $this.before($.fn.flash.transform(htmlOptions));						
        }
    );
});
									    
