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