$(document).ready(function( ) {
	$('.answer').hide();
	$('#left h2').toggle(
		function(){
			$(this).next('.answer').fadeIn('fast');
			$(this).addClass('close');
		},
		function(){
			$(this).next('.answer').fadeOut('fast');
			$(this).removeClass('close');
		}
	);// end of toggle
}); // end of ready()
