<!--
//onMouseover Scrollbar effect- by Svetlin Staev (svetlinsREMOVE@yahoo.com)
//Visit http://www.dynamicdrive.com for this script
/*---------------[IE 5.5 Scrollbars colorer]--------------------*/
function scrollBar(line,face,theme)
	{
		if (!line||!face)
			{
				line=null;
				face=null;
				switch(theme) // Predefined themes
					{
						case "neo":
							var line="#000000";
							var face="#FF0000";
							break;
					}
			}

				with(document.body.style)
					{
						scrollbarDarkShadowColor=line;
						scrollbar3dLightColor=line;
						scrollbarArrowColor="#FFFFFF";
						scrollbarBaseColor=face;
						scrollbarFaceColor=face;
						scrollbarHighlightColor="#E1E1E1";
						scrollbarShadowColor=line;
						scrollbarTrackColor=line;
					}
			}

/*------------------[Pointer coordinates catcher]---------------*/
function colorBar(){
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) scrollBar('#FF0000','#000000'); // Your colors
		else scrollBar(null,null,"neo"); // A predefined theme
	}

if (document.all){
scrollBar(null,null,"neo");
document.onmousemove=colorBar;
}
//-->