$(document).ready(function() {
    if ( document.getElementById('anchor') ) {
	    var destination = $('#anchor').offset().top;
    	$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1000);
    }
});

