var firstplay="http://www.planwang.com/attachment/dance/202312/28/20231228225110_98329.mp3";
var psid=document.getElementById("psid").value;
$(document).ready(function(){
$("#c6Player").jPlayer({
ready:function (event){
$(this).jPlayer("setMedia",{"mp3":firstplay}).jPlayer("play");
},
supplied: "m4a,mp3",
swfPath: "/skins/index/dj77/js/jp",
wmode: "window",
volume: 1,
ended: function() {
if(psid==2 && nextlink){
window.location.href = nextlink;
}else{
$(this).jPlayer("play");
}
}
});
});