couleuroff = "";
couleuron = "#0033CC";
function scrollBar(face)
	{
	with(document.body.style)
		{		
		scrollbarDarkShadowColor="lightblue";
		scrollbar3dLightColor="black";
		scrollbarArrowColor="#003366";
		scrollbarBaseColor="";
		scrollbarFaceColor="#90BCE0";
		scrollbarHighlightColor=face;
		scrollbarShadowColor=face;
		scrollbarTrackColor="#003366";
		}
	}
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+19) scrollBar(couleuron);
		else scrollBar(couleuroff);
	}
if (document.all){
scrollBar(couleuroff);
document.onmousemove=colorBar;
}
