// silly floating menu for bb chair pages.

var timer;
var minpos = 61;
var topoffset = 119;

function truebody(){
	return (document.compatMode=="CSS1Compat")
		    ? document.documentElement 
		    : document.body;
}
function scrolltop() {
	doctop = parseInt(truebody().scrollTop);
	if (doctop > topoffset + minpos) {
		document.getElementById('scrollmenu').style.top = (doctop - topoffset) + 'px';
	} else {
		document.getElementById('scrollmenu').style.top = minpos + 'px';
	}
	timer=setTimeout("scrolltop()",750);
}
function stopscrolltop() {
	clearTimeout(timer);
}
