$(document).ready(function() {
anchor.init()
});

anchor = {
init : function() {
$("a.up").click(function () {
elementClick = $(this).attr("href")
destination = $(elementClick).offset().top;
$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
return false;
})
}
}

jQuery(document).ready(function(){
    
    $("select#ancla").change(function () {
          var str = "";
          $("select#ancla option:selected").each(function () {
                str += $(this).val() + " ";
              });
		str = '#'+str
		destination = $(str).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
		return false;
        })
  });


