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