Slow scroll to specific element + offset
// slow scroll to error if validation problem
$(document).ready(function(){
$(function() {
// $('body').scrollTop( $(".help-block").offset().top+20 );
$('html, body').animate({scrollTop:$('.help-block').position().top + (-200)}, 'slow');
});
});