function clrBar(line,face)
		{
		with(document.body.style)
			{
			scrollbarDarkShadowColor=line;
			scrollbar3dLightColor=line;
			scrollbarArrowColor="#999999";
			scrollbarBaseColor=face;
			scrollbarFaceColor=face;
			scrollbarHighlightColor=face;
			scrollbarShadowColor=face;
			scrollbarTrackColor="#666666";
			}
		}
function setcolor()
		{
		clrBar("#000000","#333333"); // Colors of active state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}