jQuery(document).ready(function($){
	$(document).pngFix(); 
	$("a[href$='mp3']").each(function(){
		href = $(this).attr('href');
		id = $(this).attr('id');
		$(this).removeAttr('href');
		$(this).append('<span>&nbsp;<a href="'+href+'" id="'+id+'Play" class="play-music"></a>&nbsp;<a href="javascript:stopPlaying(\''+id+'PlayEmbed\');" disabled="disabled" class="stop-music"></a></span>')
	});

	$("a[href$='mp3']").bind('click',function(){																				
		href = $(this).attr('href');
		id = $(this).attr('id');
		$("body").append('<embed id="'+id+'Embed" src="'+href+'" autostart="true" hidden="true"></embed>');
		return false;
	});				
});
function stopPlaying(playID) {								 
	jQuery('#'+playID).remove(); 
}
