//  custom.js
//  by alex[at]theartofcharm[dot]com 
//  used on pickuppodcast.com
//  written 20100413

function toggleWidgets($) { 
	jQuery('#shownotes h3.notes-label').addClass('plus'); 
	jQuery('#shownotes h3.notes-label').click(function() {
		jQuery(this).toggleClass('plus').toggleClass('minus').next().toggle(180);
	}); 
	jQuery('#shownotes h3.notes-label').toggle(function(){jQuery(this).html("Show Notes (click to hide)");
		},function(){ jQuery(this).html("Show Notes (click to view)"); });
} 

jQuery(document).ready(function(){toggleWidgets();})
