$(document).ready(function(){

	$("#jquery_jplayer_1").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "http://www.paulczech.com/80s/audio/5MinuteSampler.mp3"
			}).jPlayer("stop");
		},
		ended: function (event) {
			$(this).jPlayer("stop");
		},
		swfPath: "js",
		supplied: "mp3"
	});
});

