// JavaScript Document
function movimento(para) {

$('html,body').animate(
{scrollTop: $("#"+para).offset().top}
, 800);

}