$(document).ready(function(){
	
	//auto play
	var href = $("#song").attr('href');
	var id = $("a[href$='mp3']").attr('id');
	
	$("body").append('<embed id="'+id+'Embed" src="'+href+'" autostart="true" hidden="true"></embed>');
	 
	 $("#song").each(function(){
	   	$(this).removeAttr('href');
	   	$(this).append('<span><a class="play-btn" href="'+href+'" id="'+id+'Play"></a>&nbsp;<a class="stop-btn" href="#"></a></span>')	
	});

	$(".play-btn").click(function(){
		if($("#"+id+"Embed").length==0) {
			$("body").append('<embed id="'+id+'Embed" src="'+href+'" autostart="true" hidden="true"></embed>');
		}
		return false;
	});
	$(".stop-btn").click(function(){
		$("#"+id+"Embed").remove();
		return false;
	});							
   });
