// Initialisation de la Bibliotheque JQuery
$(document).ready( function() {

	$('a[@href$="mp3"]').flash(
        { src: '/swf/plugin/singlemp3player.swf', height: 20, width: 100 },
        { version: 7 },
        function(htmlOptions) {
            $this = $(this);
            htmlOptions.flashvars.file = $this.attr('href');
            $this.before($.fn.flash.transform(htmlOptions));
        }
    );

});
