function playMusic(name, media) {
alert("playMusic"+media);
$("#jquery_jplayer").jPlayer( "destroy" );
$("#jquery_jplayer").jPlayer({
// alert(""+media);
ready: function(event) {
$(this).jPlayer("setMedia", {
title: name,
/* mp3: "images/song/53.mp3" */
mp3:"images/song/Yanni - If i could Tell You.mp3"
}).jPlayer( "play" );
},
swfPath: "dist/jplayer/jquery.jplayer.swf",
supplied: "mp3",
wmode: "window",
useStateClassSkin: true,
autoBlur: false,
smoothPlayBar: true,
keyEnabled: true,
remainingDuration: true,
toggleDuration: true
});
}