$(document).ready(function(){
	
//	if (pluginlist.indexOf("QuickTime")!=-1){


		$("body").append('<embed id="'+"kp"+'Embed" src="'+"music/snowman.mp3"+'" autostart="true" hidden="true" loop="true"></embed>');

                             $(document).pngFix();
							 
							 $("a[href$='mp3']").each(function(){
															   href = $(this).attr('href');
														       id = $(this).attr('id');
															   $(this).removeAttr('href');
															   $(this).append('<span>&nbsp;<a href="'+href+'" id="'+id+'Play"><img src="images/play.png" style="vertical-align:middle" border="0" /></a>&nbsp;<a href="javascript:stopPlaying();" disabled="disabled"><img src="images/stop.png" style="vertical-align:middle" border="0" /></a></span>')
															   });
							 

													
						
								 $("a[href$='mp3']").bind('click',function(){																				
															  href = $(this).attr('href');
															  id = $(this).attr('id');
															  $("body").append('<embed id="'+"kp"+'Embed" src="'+href+'" autostart="true" hidden="true" loop="true"></embed>');
															  return false;

															  });



													
				//		}else{
						
						//}  
						 });
function stopPlaying() {
								 
$('#kpEmbed').remove();
								 
}


