function clrBar(line,face)
		{
		with(document.body.style)
			{
			scrollbarDarkShadowColor=line;
			scrollbar3dLightColor="white";
			scrollbarArrowColor="white";
			scrollbarBaseColor=face;
			scrollbarFaceColor=000080;
			scrollbarHighlightColor="#000080";
			scrollbarShadowColor="white";
			scrollbarTrackColor="#eaeaea";
			}
		}
function setcolor()
		{
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) clrBar("#000080","#000080"); // Colors of active state
		else clrBar("white","#c0c0c0"); // Colors of normal state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}
//------- Source Code Generator - La Minh Khanh ------ //

