<!--



//onMouseover Scrollbar effect- by Svetlin Staev (thewebmonster@altavista.com)

//Submitted to Dynamic Drive

//Visit http://www.dynamicdrive.com for this script

//Modified for genext.net



/*---------------[IE 5.5 Scrollbars colorer]--------------------*/

function scrollBar(line,face,theme)

	{

		if (!line||!face)

			{

				line=null;

				face=null;

				switch(theme) // Predefined themes

					{

						case "blue":

							var line="#78AAFF";

							var face="#EBF5FF";

							break;

						case "white":

							var line="#333333";

							var face="#f5f5f5";

							break;

					}

			}



				with(document.body.style)

					{

						scrollbarDarkShadowColor=line;

						scrollbar3dLightColor=line;

						scrollbarArrowColor="black";

						scrollbarBaseColor=face;

						scrollbarFaceColor=face;

						scrollbarHighlightColor=face;

						scrollbarShadowColor=face;

						scrollbarTrackColor="#F5F5F5";

					}

			}



/*------------------[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('#000000','#ACD9FA'); // Your colors

		else scrollBar(null,null,"white"); // A predefined theme

	}



if (document.all){

scrollBar(null,null,"white");

document.onmousemove=colorBar;

}

//-->