/* hide radio links */
$('.listen2content').hide();

/* toggle button content on click */
$('.listen').click( function() {
	$('.listen2content').toggle('slow');
});

/* if mouse leave contract after 5 seconds */
$('.listen').mouseleave( function() {
	setTimeout("$('.listen2content').hide('slow');",5000);
});