var audioCurrentlyPlaying = -1;

function stopAudio() {	
	$('#audio_'+audioCurrentlyPlaying+'_player').html('<b>audio preview</b>');
	audioCurrentlyPlaying = -1;
}

function playAudio(t, m) {
	if (audioCurrentlyPlaying != -1) {
		$('#audio_'+audioCurrentlyPlaying+'_player').html('<b>audio preview</b>');
		if (audioCurrentlyPlaying == t) {
			audioCurrentlyPlaying = -1;
			return false;
		}
	}
	
    var v  = m.split('/');
    m = v[(v.length-1)];
		
	audioCurrentlyPlaying = t;
		
	var so = new SWFObject("/assets/swfs/audio_preview_spc.swf?src=/assets/audio/spc/previews/"+m, "audio_preview_"+t, "85", "16", "7", "#efeeee");
	so.write("audio_" + audioCurrentlyPlaying + "_player");
	
	return false;
}

function play_audio(x) {
	 window.open ("/assets/audio/player.html#"+x,
	"mywindow","status=0,toolbar=0,width=300,height=24");
//	alert(x);
//	window.open();
}