$(document).ready(function(){
							 
	$("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) {
								 
	$('#'+playID).remove();
								 
}