$(document).ready(function(){
							 
							 $("a[href$='mp3']").each(function(){
															   href = $(this).attr('href');
														       id = $(this).attr('id');
															   $(this).removeAttr('href');
															   $(this).append('<span><a href="'+href+'" id="'+id+'Play"><img src="http://www.stevefestmusic.com/info/images/play.png" alt="Play" /></a><a href="javascript:stopPlaying(\''+id+'PlayEmbed\');" disabled="disabled"><img src="http://www.stevefestmusic.com/info/images/stop.png" alt="Stop" /></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) {
								 
$('#'+playID).remove();
								 
}