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