jQuery(document).ready(function(){
						 
							 jQuery("a[href$='mp3']").each(function(){
															   href = jQuery(this).attr('href');
														       id = jQuery(this).attr('id');
															   jQuery(this).removeAttr('href');
															   jQuery(this).append('<span><a href="'+href+'" id="'+id+'Play">Play</a> | <a href="javascript:stopPlaying(\''+id+'PlayEmbed\');" disabled="disabled">Stop</a></span>')
															   });
							 
							 jQuery("a[href$='mp3']").bind('click',function(){																				
														  href = jQuery(this).attr('href');
														  id = jQuery(this).attr('id');
														  jQuery("body").append('<embed id="'+id+'Embed" src="'+href+'" autostart="true" hidden="true"></embed>');
														  return false;
														  });
													
						
													
						   });
function stopPlaying(playID) {
								 
jQuery('#'+playID).remove();
								 
}
