

//*---For 3D scrollbars. Colors: line1 - #009900, line2 - #cccc00, face1 - #cccc66, face2 - #cccc66*/
function clrBar(line,face)
		{
		with(document.body.style)
			{
			scrollbarDarkShadowColor=line;
			scrollbar3dLightColor="#67a94a";
			scrollbarArrowColor="black";
			scrollbarBaseColor=face;
			scrollbarFaceColor=face;
			scrollbarHighlightColor="#e4ffdd";
			scrollbarShadowColor="gray";
			scrollbarTrackColor="#CCCCCC";
			}
		}
function setcolor()
		{
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) clrBar("#E0DC2E","#2285c6"); // Colors of active state
		else clrBar("#84d662","#4da7d9"); // Colors of normal state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}

