// JavaScript Document
jQuery(document).ready(function() {
	jQuery(".yearlylist ol").css("display","none");
	jQuery(".yearlylist").click(function(){
		$(this).children().slideToggle("slow");
	});
});