// JQUERY SCRIPTS FOR HIDING/SHOWING TABBED AREAS
// ---------------------------------------------------------------------------------------
$(document).ready(function()
{
	
	var maxHeight = $("div#pastyears").height();
	var minHeight = 31;
	
	$("div#pastyears").css({'height': minHeight});
	$("a#hideTrigger").addClass("current");
	
	$("a#showTrigger").click(function()
	{
		if (!$(this).hasClass('current')) {
			$("div#pastyears").animate({height: maxHeight+"px"}, { queue:false, duration:600 });
			$("a#hideTrigger").removeClass("current");
			$(this).addClass("current");
		}
	});
	
	$("a#hideTrigger").click(function()
	{
		if (!$(this).hasClass('current')) {
			$("div#pastyears").animate({height: minHeight+"px"}, { queue:false, duration:600 });
			$("a#showTrigger").removeClass("current");
			$(this).addClass("current");
		}
	});
	
	$("p#message").fadeOut(800).fadeIn(800);

		
});