
window.onload = function()
{
var htmlStyle = document.getElementsByTagName('html')[0].style;
var bodyStyle = document.body.style;
bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#c7a663';
bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#ff0000';
bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#c5a970';
bodyStyle.scrollbarShadowColor = htmlStyle.scrollbarShadowColor = '#d7d57d';
bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#eabf66';
bodyStyle.scrollbar3dlightColor = htmlStyle.scrollbar3dlightColor = '#b49865';
bodyStyle.scrollbarDarkshadowColor = htmlStyle.scrollbarDarkshadowColor = '#a98a4b';
bodyStyle.scrollbarBaseColor = htmlStyle.scrollbarBaseColor = '#4f9b97';
}


