
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent))


{

 var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
 if (ieversion>=8)
		{
		document.write('<style type="text/css">html{scrollbar-arrow-color: #008C00;scrollbar-3dlight-color: #91BF3E;scrollbar-highlight-color: #91BF3E;scrollbar-face-color: #CDF4AD;scrollbar-shadow-color: #F4F7F3;scrollbar-darkshadow-color: #008C00;scrollbar-track-color:#1A1A1A;overflow-x: hidden; }</style>');}

 else if (ieversion>=7)
{
document.write('<style type="text/css">html{scrollbar-arrow-color: #008C00;scrollbar-3dlight-color:#91BF3E;scrollbar-highlight-color: #91BF3E;scrollbar-face-color: #CDF4AD;scrollbar-shadow-color: #F4F7F3;scrollbar-darkshadow-color: #008C00;scrollbar-track-color:#1A1A1A;overflow-x: hidden; }</style>');}
 

		else if (ieversion>=6)
			{
			document.write('<style type="text/css">html{scrollbar-arrow-color: #008C00;scrollbar-3dlight-color: #91BF3E;scrollbar-highlight-color: #91BF3E;scrollbar-face-color: #CDF4AD;scrollbar-shadow-color: #F4F7F3;scrollbar-darkshadow-color: #008C00;scrollbar-track-color:#1A1A1A;overflow-x: hidden; }</style>');}
 else if (ieversion>=5)
 	{document.write('<style type="text/css">html{scrollbar-arrow-color: #008C00;scrollbar-3dlight-color: #91BF3E;scrollbar-highlight-color:#91BF3E;scrollbar-face-color: #CDF4AD;scrollbar-shadow-color: #F4F7F3;scrollbar-darkshadow-color: #008C00;scrollbar-track-color:#1A1A1A;overflow-x: hidden; }</style>');}



}