// JavaScript Document
window.onload = function()
{
var htmlStyle = document.getElementsByTagName('html')[0].style;
var bodyStyle = document.body.style;
bodyStyle.scrollbarBaseColor = htmlStyle.scrollbarBaseColor = '#66CC66';
}
