window.onload = function()
{
var htmlStyle = document.getElementsByTagName('html')[0].style;
var bodyStyle = document.body.style;
bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#dee3e7';
bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#006699';
bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#efefef';
bodyStyle.scrollbarShadowColor = htmlStyle.scrollbarShadowColor = '#dee3e7';
bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#ffffff';
bodyStyle.scrollbar3dlightColor = htmlStyle.scrollbar3dlightColor = '#d1d7dc';
bodyStyle.scrollbarDarkshadowColor = htmlStyle.scrollbarDarkshadowColor = '#98aab1';
}
