<!--
all = "#FFFFFF";
couleurbase = "#DDDDDD";
couleurover = "#B1B1B1";
function scrollBar(face)
	{
	
	with(document.body.style)
		{
		scrollbarDarkShadowColor=all;
		scrollbar3dLightColor=all;
		scrollbarArrowColor=all;
		scrollbarBaseColor=all;
		scrollbarFaceColor=face;
		scrollbarHighlightColor=all;
		scrollbarShadowColor=all;
		scrollbarTrackColor=all;
		
		}
	}
function colorBar(){
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w && x<w+11) scrollBar(couleurover);
		else scrollBar(couleurbase);
	}
if (document.all){
scrollBar(couleurbase);
document.onmousemove=colorBar;
}
 -->