Тему можно закрывать, додумался:
Вот, если кому нужно:
<!--Плавное передвижение вниз--->
<script type="text/javascript">
$(document).ready(function() {
setTimeout(function() {
elementClick = '<?=$_GET['anchor']?>';
destination = $(elementClick).offset().top;
if($.browser.safari){
$('body').animate( { scrollTop: destination }, 1100 );
}else{
$('html').animate( { scrollTop: destination }, 1100 );
}
}, 100);
});
</script>