function ScrollColor(out) {	
// <body onLoad=ScrollColor(0) onMousemove=ScrollColor(0) onMouseout=ScrollColor(1)>
  if(navigator.appName != "Microsoft Internet Explorer")	return	// Abbruch!
  if(navigator.appVersion.substring(22,25) < "5.5")		return	// Abbruch!
  // Maus auf Scrollbar? (größer als Innenmaße und Fenster nicht verlassen)
  if(!out&&(window.event.x>document.body.clientWidth+1||window.event.y>document.body.clientHeight+1)){
    with(document.body.style){
      scrollbarFaceColor		= "#FFCC66";
      scrollbarTrackColor		= "#FFCC66";
      scrollbarShadowColor		= "#993300";
      scrollbarHighlightColor		= "#FFCC66";
      scrollbarArrowColor		= "#993300";
    }
  }else{	// Maus nicht auf Scrollbar oder Fenster verlassen
    with(document.body.style){
      scrollbarFaceColor		= "#FFCC66";	// Balken und ggf. Track-Farbmuster-Anteil
      scrollbarTrackColor		= "#FFCC66";	// Hintergrund (Standard: Mischmuster)
      scrollbarShadowColor		= "#FDF5E1";	// Rand, dunkel, und ggf. Track-Farbmuster-Anteil
      scrollbarHighlightColor		= "#FFCC66";	// Rand, hell #e6e6e6
      scrollbarArrowColor		= "#993300";	// Pfeile (Dreiecke)
    }
  }
}