
var $j = jQuery.noConflict();

$j(function(){
	$j('.jq-toggle-button').toggle(
		function() { // handlerOdd
			$j(this).attr('src', 'http://www.sarahstim.com/phdboy/wp-content/themes/notepad-theme/js/bullet_toggle_minus.png');
			$j(this).parent().siblings('.jq-toggle-able').slideToggle('slow');
		},
		function() { // handlerEven
			$j(this).attr('src', 'http://www.sarahstim.com/phdboy/wp-content/themes/notepad-theme/js/bullet_toggle_plus.png');
			$j(this).parent().siblings('.jq-toggle-able').slideToggle('slow');
		}
	);
});


