//<![CDATA[
$(document).ready(function(){

	$("#jquery_jplayer_1").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "",
				poster: ""
			});

		},

		ended: function (event) {
			$(this).jPlayer("play");
		},
		swfPath: "js",
		supplied: "mp3"
	});
	
	// $(".jp-jplayer").hide();
	$(".jp-audio-container").hide();
	
	$(".audio").click(function() {
	  $(".jp-audio-container").show();
	  
	  $("#jquery_jplayer_1").jPlayer("setMedia", { 
	    mp3: "audio/" + $(this).attr("id") + ".mp3",
	    poster: "audio/" + $(this).attr("id") + ".jpg",
	}).jPlayer("play");
	  
	$('#enter_image').hide();
	return false; 
	});
	
});
//]]>
