		$(function() {
			$('li.answer').stop(true, true).delay(2000).animate({ "height": "hide", "opacity": "hide" }, 200 );

			$("ul.faq").click(function() {
				$(this).find('li.answer')
					.stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
			});
			
		});

