$(document).ready(init);

function init()
{
	$("#jPlayer").jPlayer({
    	ready: function(){
			$("#startStop").wrap("<span><a href='javascript:;' onclick='playAudio()'></a></span>");
      		this.setFile("/v2/media/radiospot.mp3");
	  		this.stop();	
    	},
		swfPath: "/v2/jplayer"
  	});
}

function playAudio(){
		$("#jPlayer").jPlayer("play");
		$("#jPlayer").jPlayer("onSoundComplete", function(){
  			$("#startStop").parent().parent().html("<span><a href='javascript:;' onclick='playAudio()'><img src='v2/pics/splash_5.jpg' width='78' height='83' border='0' id='startStop'></a></span>");
		});
		$("#startStop").parent().parent().html("<span><a href='javascript:;' onclick='stopAudio()'><img src='v2/pics/splash_5_stop.jpg' width='78' height='83' border='0' id='startStop'></a></span>");
}

function stopAudio(){
		$("#jPlayer").jPlayer("stop");
		$("#startStop").parent().parent().html("<span><a href='javascript:;' onclick='playAudio()'><img src='v2/pics/splash_5.jpg' width='78' height='83' border='0' id='startStop'></a></span>");
}
