/*
** File: scripts/model_specs.js
** Author: Clint Talbott
** Last Edit: 17 Mar 2009
*/
$(".year table").hide();
$(".year table:first").show();
$(".year h3").click(function() {
	if($(this).siblings().css('display') == "none") {
		$(this).siblings(":hidden").show();
	} else {
		$(this).siblings(":visible").hide();
	}
});
