function x_scrollTo(a){
    var destination = jQuery(a).offset().top;
    jQuery("html").animate({scrollTop:destination},1000);
    jQuery("body").animate({scrollTop:destination},1000,function(){location.href=a;});
    return false;
}