  $(document).ready(function(){
   
	$('.sideTime > li').mouseover(function(){
	  $(this).css('background','#F2F9FC');
	});
	$('.sideTime > li').mouseout(function(){
	  $(this).css('background','#ffffff');
	});
	$('.showAnswer').toggle(function(){
      $(this).parent().parent().parent().parent().parent().next().fadeIn(1000);
	  },function(){
	  $(this).parent().parent().parent().parent().parent().next().hide();
	  });
  });
