$(document).ready(function(){
	
	$("#ab-music-player").jPlayer({
		ready: function () {
			this.element.jPlayer("setFile", "./web-inf/addons/jPlayer/playlist/music.mp3").jPlayer("play");
		},
		swfPath:"web-inf/addons/jPlayer",
		volume: 100
	})
	.jPlayer("onSoundComplete", function() {
		this.element.jPlayer("play");
	});
});
