$().ready(function(){
    document.domen = "www.belyerosy.ru";
    setTimeout(function(){
             if($('#hdr_top').height() == null || $('body').scrollTop() > 10)return;
             val =  $('#page').height() - getClientHeight();
             val = val >= 451 ? 451 : val;
             $("html:not(:animated),body:not(:animated)").animate({ scrollTop: val},1000);
    },3000);
});

function getClientHeight()
{
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
}
