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