function toggle_visibility(id,mp3location) {
	// hide all players
	$(".playerarea").html('');
	
	document.getElementById('radioPlayer').stopTrack();
	
 	// show clicked player
 	$('#' + id).html('<embed src=\"http://www.fatcityrecordings.com/common/player.swf?file=http://www.fatcityrecordings.com/mp3/' + mp3location + '.mp3&as=1\" quality=high bgcolor=#000000 WMODE=transparent width=\"290\" height=\"20\"  align=\"\" type=\"application/x-shockwave-flash\" swLiveConnect=\"true\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" class=\"playerNew\">');
 	
}
