// JavaScript Document

// Sprechblase fährt mit runter

window.onscroll = function()
{
if( window.XMLHttpRequest ) { // IE 6 doesn't implement position fixed nicely...
if (document.documentElement.scrollTop > 955 || self.pageYOffset > 955) {
jQuery('#recentcommentshome').css('position', 'fixed');
jQuery('#recentcommentshome').css('top', '0px');
jQuery('#recentcommentshome').css('margin-top', '0');
} else if (document.documentElement.scrollTop < 955 || self.pageYOffset < 955) {
jQuery('#recentcommentshome').css('position', 'absolute');
jQuery('#recentcommentshome').css('top', 'auto');
jQuery('#recentcommentshome').css('margin-top', '20px');
}
}
} 

