
/**
 * Code javascript pour le blog
 */

// Lecture de fichiers mp3
//
$(document).ready(function(){
$('a[@href$=".mp3"]').flash(
	{ src: '/dewplayer.swf', height: 20, width: 200 },
	{ version: 7 },
	function(htmlOptions) {
		$this = $(this);
		htmlOptions.flashvars.file = $this.attr('href');
		$this.before($.fn.flash.transform(htmlOptions));                       
	}
).html('');
});
