$(document).ready(function() {
	
	$("a[href$='mp3'][class!='simples']").flash(
		{ 
			src: 'flash/mp3.swf', 
			height: 20, 
			width: 150,
			wmode: 'transparent',
			flashvars: { 
				backColor: '8ec9d9',
				frontColor: '333333'
			} 
		},
		{ version: 7 },
		function(htmlOptions) {
			$this = $(this);
			htmlOptions.flashvars.file = $this.attr('href');
			$this.before($.fn.flash.transform(htmlOptions));	
			$(this).remove();		
			htmlOptions.title = 'ABCdeFg';
		}
	);
			
});
