$(document).ready(function() 
   {
	   // hides the list when the DOM is ready
	   $('div.sb-months > ul').hide();
		// toggles the list
		$('a.toggle').click(function()
			{
				$(this).parent('h5').next('ul').toggle('slow');
				return false;
			}
		);
	}
);