$(document).ready(function(){

	$("#jquery_jplayer_1").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {

				mp3: "http://joelandjanna.com/docs/harbors/overagain.mp3",
				m4a: "http://joelandjanna.com/docs/harbors/overagain.m4a",
				oga: "http://joelandjanna.com/docs/harbors/overagain.ogg"
			});
		},
		ended: function (event) {
			$("#jquery_jplayer_2").jPlayer("play", 0);
		},
		swfPath: "js",
		supplied: "mp3, m4a, oga"
	})
	.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", {
				mp3: "http://joelandjanna.com/docs/harbors/helpmetospeak.mp3",
				m4a: "http://joelandjanna.com/docs/harbors/helpmetospeak.m4a",
				oga: "http://joelandjanna.com/docs/harbors/helpmetospeak.ogg"
			});
		},
		ended: function (event) {
			$("#jquery_jplayer_3").jPlayer("play", 0);
		},
		swfPath: "js",
		supplied: "mp3, m4a, oga",
		cssSelectorAncestor: "#jp_interface_2"
	})
	.bind($.jPlayer.event.play, function() { // Using a jPlayer event to avoid both jPlayers playing together.
			$(this).jPlayer("pauseOthers");
	});


	$("#jquery_jplayer_3").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "http://joelandjanna.com/docs/harbors/dontwithholdyourlove.mp3",
				m4a: "http://joelandjanna.com/docs/harbors/dontwithholdyourlove.m4a",
				oga: "http://joelandjanna.com/docs/harbors/dontwithholdyourlove.ogg"
			});
		},
		ended: function (event) {
			$("#jquery_jplayer_4").jPlayer("play", 0);
		},
		swfPath: "js",
		supplied: "mp3, m4a, oga",
		cssSelectorAncestor: "#jp_interface_3"
	})
	.bind($.jPlayer.event.play, function() { // Using a jPlayer event to avoid both jPlayers playing together.
			$(this).jPlayer("pauseOthers");
	});


	$("#jquery_jplayer_4").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "http://joelandjanna.com/docs/harbors/conformme.mp3",
				m4a: "http://joelandjanna.com/docs/harbors/conformme.m4a",
				oga: "http://joelandjanna.com/docs/harbors/conformme.ogg"
			});
		},
		ended: function (event) {
			$("#jquery_jplayer_1").jPlayer("play", 0);
		},
		swfPath: "js",
		supplied: "mp3, m4a, oga",
		cssSelectorAncestor: "#jp_interface_4"
	})
	.bind($.jPlayer.event.play, function() { // Using a jPlayer event to avoid both jPlayers playing together.
			$(this).jPlayer("pauseOthers");
	});




});
