var j = jQuery.noConflict();
j(document).ready(function() {				
   // hide all podcast players
   j('.player').hide();
   
   // show when you clicky the h4
   j('a.reveal_player').click(function() {
   	if ( j(this).parent().attr('class') ) {
   		j(this).parent().removeClass();
   	} else {
   		j(this).parent().addClass('open');
   	}
   	j(this).parent().siblings('.player').slideToggle(300);
   });
   
});