function scrollBar(line,face,theme)
	{
		if (!line||!face)
			{
				line=null;
				face=null;
				switch(theme)
					{
						case "blue":
							var line="#d0c69b";
							var face="#d0c69b";
							break;							
					}
			}
				with(document.body.style)
					{
						scrollbarDarkShadowColor=line;
						scrollbar3dLightColor=line;
						scrollbarArrowColor="black";
						scrollbarBaseColor=face;
						scrollbarFaceColor=face;
						scrollbarHighlightColor=face;
						scrollbarShadowColor=face;
						scrollbarTrackColor="#d0c69b";
					}
			}
function colorBar(){
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) scrollBar('#808080','#d0c69b'); 
		else scrollBar(null,null,"blue"); 
	}

if (document.all){
scrollBar(null,null,"blue");
document.onmousemove=colorBar;
}

