$(document).ready(function() {
  $("#jquery_jplayer").jPlayer( {
    ready: function () {
      this.element.jPlayer("setFile", "uploads/audio/musik.mp3").jPlayer("play");
    },
    swfPath: "uploads/jquery",
	nativeSupport: true
  });
  
  $("#jplayer_stop").click(function() {
  	$("#jquery_jplayer").jPlayer("stop");
  });
});
