jQuery.fn.jmp3=function(c){var d={'playerPath':"",'mp3path':"",'backColor':"",'frontColor':"",'width':"25",'height':"20",'repeatPlay':"false",'songVolume':"50",'autoplay':"false",'showDownload':"true",'showfilename':"true"};if(c){jQuery.extend(d,c)}return this.each(function(){var a=d.filename+jQuery(this).html();var b="";if(!jQuery.browser.msie){b+=""+"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'"+" id='fmp3-object'"+" style='width:"+d.width+"px;height:"+d.height+"px'"+" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab'>"+"<param name='movie' value='"+d.playerPath+"'"+"?"+"file="+d.mp3path+"&autoStart="+d.autoplay+"&backColor="+d.backColor+"&frontColor="+d.frontColor+"&repeatPlay="+d.repeatPlay+"&showDownload="+d.showDownload+"&songVolume="+d.songVolume+"' />"+"<param name='wmode' value='transparent' />"}b+=""+"<embed wmode='transparent'"+" width='"+d.width+"'"+" height='"+d.height+"'"+" src='"+d.playerPath+"?"+"showDownload="+d.showDownload+"&file="+d.mp3path+"&autoStart="+d.autoplay+"&backColor="+d.backColor+"&frontColor="+d.frontColor+"&repeatPlay="+d.repeatPlay+"&songVolume="+d.songVolume+"'"+" type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";if(!jQuery.browser.msie){b+=""+"</object>"}if(d.showfilename=="false"){jQuery(this).html("")}jQuery(this).prepend(b+"&nbsp;");if(jQuery.browser.msie){this.outerHTML=this.outerHTML}})};