var op = /opera 5|opera\/5/i.test(navigator.userAgent);
var ie = !op && /msie/i.test(navigator.userAgent);	
var mz = !op && /mozilla\/5/i.test(navigator.userAgent);	
if (ie && document.getElementById == null) {	// ie4
	document.getElementById = function(sId) {
		return document.all[sId];
	};
}
if (ie && window.attachEvent) {
	window.attachEvent("onload", function () {
		var scrollBorderColor			=	"#191919";
		var scrollFaceColor			=	"#7f7f7f";
		with (document.body.style) {
			scrollbarDarkShadowColor	=	"#7f7f7f";
			scrollbar3dLightColor		=	"#7f7f7f";
			scrollbarArrowColor		=	"#191919";
			scrollbarBaseColor		=	"#191919";
			scrollbarFaceColor		=	"#191919";
			scrollbarHighlightColor		=	"#191919";
			scrollbarShadowColor		=	"#ff6600";
			scrollbarTrackColor		= 	"#191919";
		}
	});
}



