/***********************************************
* Made by TIGEL.NL
* Scrollbar colors... Keep them out of CSS to prevent errors
* Only works in IE....
***********************************************/
browser_version= parseInt(navigator.appVersion); 
browser_type = navigator.appName; 
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) { 
	document.write('<style type="text/css">'); 
	// document.write('html ');
	document.write('body {');
	document.write('SCROLLBAR-FACE-COLOR: #000000;');		// De balk
	document.write('SCROLLBAR-ARROW-COLOR: #FFFFFF;');		// Het pijltje
	document.write('SCROLLBAR-TRACK-COLOR: #333333;');		// Achtergrond balk
	document.write('SCROLLBAR-SHADOW-COLOR: #333333;');		// BINNEN, Rechts && Onder
	document.write('SCROLLBAR-DARKSHADOW-COLOR: #333333;');	// BUITEN, Rechts && Onder	
	document.write('SCROLLBAR-HIGHLIGHT-COLOR: #CCCCCC;');	// BINNEN, Links && Boven
	document.write('SCROLLBAR-3DLIGHT-COLOR: #333333;');	// BUITEN, Links && Boven
	document.write('}'); 
	document.write('</style>'); 
} 

