
	$(function() {
		$(".faq .question span").toggle(
			function() {
				var a = $(this).parent().parent().find(".answer");
				a.animate({height: a.find('div').outerHeight(true)}, "fast");
				this.className = "open";
			},
			function() {
				var a = $(this).parent().parent().find(".answer");
				a.animate({height: 1}, "fast");
				this.className = "";
			}
		);
		
		$(".formfaq span").toggle(
			function() {
				var div = $(this).parent()[0];
				$(this).parent().parent().animate({height: $(div).outerHeight(true)}, "fast");
				this.className="open";
			},
			function() {
				$(this).parent().parent().animate({height: 30}, "fast");
				this.className = '';
			}
		);
	});

	