/*
 * Scroll Bars Colorization - IE only
 */


	window.onload = function()
	{
	var htmlStyle = document.getElementsByTagName('html')[0].style;
	var bodyStyle = document.body.style;
	bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#695d88';
	bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#ff0';
	bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#cfc3d3';
	bodyStyle.scrollbarShadowColor = htmlStyle.scrollbarShadowColor = '#695d88';
	bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#cfc3d3';
	bodyStyle.scrollbar3dlightColor = htmlStyle.scrollbar3dlightColor = '#CCF';
	bodyStyle.scrollbarDarkshadowColor = htmlStyle.scrollbarDarkshadowColor ='#352f44';
	}