// Parse base href
var thebase   = document.getElementsByTagName("base");
var basehref  = thebase[0].href;

$(document).ready(function(){
	$("a.listen").click(function(){
		var href = $(this).attr("href");
		$("#player").empty();
		$('#player').flash({
		    src: basehref + '/flash/player.swf',
		    flashvars: {
		    	 playerID: '1',
		    	 loop: 'no',
		    	 autostart: 'yes',
		    	 soundFile: href
		    },
		    width: 290,
		    height: 24
		});
		return false;
	});
});
