// JavaScript Document

$(document).ready(function()
{
	$(".accordion h3").click(function()
	{
		$(this).next(".aContent").slideToggle("slow", function()
		{
			var origWindowHeight = $(window).height(); //orignal window height
			var origDocHeight = $(document).height(); //store orginal document height
			$('#outer').heightFix(origWindowHeight, origDocHeight);											   
		});
		
		$(this).toggleClass("active");
	});
});