Found the solution here:
http://www.kriesi.at/support/topic/no-author-displayed-on-posts-scrollto-jquery-plugin#post-10174
If someone needs this for NEWSCAST, too, here is, what I've added:
Open custom.js file, add in line 31
k_smoothscroll(); //smooth scrolling
and add after line 787 this code:
function k_smoothscroll()
{
jQuery('a[href*=#]').click(function() {
var newHash=this.hash;
if(newHash != '' && newHash != '#' )
{
var target=jQuery(this.hash).offset().top,
oldLocation=window.location.href.replace(window.location.hash, ''),
newLocation=this,
duration=800,
easing='easeOutQuint';
// make sure it's the same location
if(oldLocation+newHash==newLocation)
{
// animate to target and set the hash to the window.location after the animation
jQuery('html:not(:animated),body:not(:animated)').animate({ scrollTop: target }, duration, easing, function() {
// add new hash to the browser location
window.location.href=newLocation;
});
// cancel default click action
return false;
}
}
});
}
That causes this nice smooth scrolling to the top effect.