$(document).ready(function(){
                             $(document).pngFix();
							 
							 $(".player").each(function(){
															   href = $(this).attr('href');
														       id = $(this).attr('id');
															   $(this).removeAttr('href');
															   $(this).prepend ('<span>&nbsp;<a class="playbutton" href="'+href+'" id="'+id+'Play"><img src="/jquery/bssound/images/play.png" style="vertical-align:middle" border="0" width="15" /></a>&nbsp;<a href="javascript:stopPlaying(\''+id+'PlayEmbed\');" disabled="disabled"><img src="/jquery/bssound/images/stop.png" style="vertical-align:middle" border="0"  width="15"/></a></span>')
															   });
							 
							 $(".playbutton").bind('click',function(){																				
														  href = $(this).attr('href');
														  id   = $(this).attr('id');
															//alert(href + ' - ' + id);
														  $("body").append('<embed id="'+id+'Embed" src="'+href+'" autostart="true" hidden="true"></embed>');
														  return false;
														  });
													
						
													
						   });
function stopPlaying(playID) {
								 
$('#'+playID).remove();
								 
}

