// jplayer Script
$(document).ready(function(){

	$("#jquery_jplayer_1").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
        solution: 'html, flash',
				mp3: "media/Act-One-Extract.mp3"
			});
		},
		ended: function (event) {
			$("#jquery_jplayer_2").jPlayer("play", 0);
		},
		swfPath: "js",
		supplied: "mp3",
        cssSelectorAncestor: "#jp_interface_1"
	})
	.bind($.jPlayer.event.play, function() { // Using a jPlayer event to avoid both jPlayers playing together.
			$(this).jPlayer("pauseOthers");
	});

	$("#jquery_jplayer_2").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
        solution: 'html, flash',
				mp3: "media/Titanic-Medley-2011.mp3"
			});
		},
		ended: function (event) {
			$("#jquery_jplayer_1").jPlayer("play", 0);
		},
		swfPath: "js",
		supplied: "mp3",
		cssSelectorAncestor: "#jp_interface_2"
	})
	.bind($.jPlayer.event.play, function() { // Using a jPlayer event to avoid both jPlayers playing together.
			$(this).jPlayer("pauseOthers");
	});
});
