$(document).ready(function(){
	$("#jquery_jplayer").jPlayer({
		ready: function () {
			$(this).setFile("version2.mp3").play();
		},
		volume: 20,
		oggSupport: false
	})
	.jPlayerId("volumeMin", "player_volume_min")
	.jPlayerId("volumeMax", "player_volume_max")
	.jPlayerId("volumeBar", "player_volume_bar")
	.jPlayerId("volumeBarValue", "player_volume_bar_value")
	/*.onProgressChange( function(lp,ppr,ppa,pt,tt) {
		alert('algo');
		if (pt > 5000) {
			alert('test');
			$(this).playHeadTime(0);
		}
	})*/
	.onSoundComplete( function() {
		//esto es para hacer el bucle
		$(this).play();
	}); 
});
