Try adding this to the end of template.js:
$(document).ready(function() {
if($('.errormandatory').length > 0) {
$('html, body').animate({
scrollTop: $('.errormandatory:first').offset().top
}, 2000);
}
});