﻿$(function() {
 $("#ans").css("display", "none");
 $("#bg_ans a").click(function(){
  $("#ans").slideDown("fast");
  $("html, body").animate({ scrollTop: $(this).offset().top }, 'slow','swing');
  return false;
 });
});
