// JavaScript Document

function crash_reports(){
	$("#reports h3").toggle(
		function(){
			h2Year = $(this).html();
			$("#months-" + h2Year).show();
		},
		function(){
			h2Year = $(this).html();
			$("#months-" + h2Year).hide();
		}
	);
	
	$("strong.month").toggle(
		function(){
			monthID = $(this).attr('id'); //alert (monthID);
			reportID = monthID.replace(/month/, "reports"); //alert(reportID);
			$("#" + reportID).show();
		},
		function(){
			monthID = $(this).attr('id'); //alert (monthID);
			reportID = monthID.replace(/month/, "reports");
			$("#" + reportID).hide();
		}
	);
}

$(document).ready(function(){
	crash_reports();
});