$(document).ready(function() {
/*
	$('[class^=spop]').hide();
	$('[class^=link]').click(function() {
		var $this = $(this);
		var x = $this.attr("className");
		$('.spop-link' + x).toggle();
		return false;
	});
*/
	$('.listen a').click(function() {
		$('.spop').hide();
		var div = $($(this).parent('p').next('div')[0]);
		div.show();
	});
});
