$(function(){

	$('.answer').hide();
  $('.answer').eq(0).show();
	
	$('a.question').click(function(){
								$(this).blur();
								$(this).parent().children('.answer').slideToggle();
								$(this).toggleClass('open');
								return false;
							});
							
	$('div.answer a.close').click(function(){
											$(this).blur();
											$(this).parent().parent().children('a.question').removeClass('open');
											$(this).parent().slideUp();
											return false;
										});

});
