$(document).ready(function () {
$('html, body').animate({
scrollTop: $('#div').offset().top
}, 400); //또는 'fast', 'slow'
});
setTimeout(function(){
var offset = $("#divfrm").offset();
$('html, body').animate({scrollTop : (offset.top-20)}, 350);
}, 400);