
if (browser_id=="IE" && browser_version>=5)
{



clrPos=0;
colours=new Array(
'ffff00', //GEEL
'eeff00',
'ddff00',
'ccff00',
'bbff00',
'aaff00',
'99ff00',
'88ff00',
'77ff00',
'66ff00',
'55ff00',
'44ff00',
'33ff00',
'22ff00',
'11ff00',
'00ff00',//GROEN
'00ff11',
'00ff22',
'00ff33',
'00ff44',
'00ff55',
'00ff66',
'00ff77',
'00ff88',
'00ff99',
'00ffaa',
'00ffbb',
'00ffcc',
'00ffdd',
'00ffee',
'00ffff',//L. Blauw
'00eeff',
'00ddff',
'00ccff',
'00bbff',
'00aaff',
'0099ff',
'0088ff',
'0077ff',
'0066ff',
'0055ff',
'0044ff',
'0033ff',
'0022ff',
'0011ff',
'0000ff',//D. Blauw
'1100ff',
'2200ff',
'3300ff',
'4400ff',
'5500ff',
'6600ff',
'7700ff',
'8800ff',
'9900ff',
'aa00ff',
'bb00ff',
'cc00ff',
'dd00ff',
'ee00ff',
'ff00ff',//PAARS
'ff00ee',
'ff00dd',
'ff00cc',
'ff00bb',
'ff00aa',
'ff0099',
'ff0088',
'ff0077',
'ff0066',
'ff0055',
'ff0044',
'ff0033',
'ff0022',
'ff0011',
'ff0000', //ROOD
'ff0000',
'ff1100',
'ff2200',
'ff3300',
'ff4400',
'ff5500',
'ff6600',
'ff7700',
'ff8800',
'ff9900',
'ffaa00',
'ffbb00',
'ffcc00',
'ffdd00',
'ffee00')

scrollbarTrackColor='#000000';//document.bgColor;
scrollbarFaceColor='#000000';//document.bgColor;
scrollbar3dLightColor='#000000';//document.bgColor;
scrollbarDarkShadowColor='#000000';//document.bgcolor;
borderWidth=0;
borderStyle='solid';
backgroundImage='url(images/achtergrnd_main.gif)';
backgroundAttachment="fixed"; 

function ScrollFlash()
{ 
clrPos=(clrPos+1)%colours.length;

//scrollbarTrackColor='#000000';//document.bgColor;
//scrollbarFaceColor='#000000';//document.bgColor;
//scrollbar3dLightColor='#000000';//document.bgColor;
//scrollbarDarkShadowColor='#000000';//document.bgcolor;
//borderWidth=0;
//borderStyle='solid';

with(window.document.body.style)
{
    scrollbarArrowColor=colours[(clrPos+(clrPos/2))%colours.length];
//    scrollbar3dLightColor=colours[(clrPos)%colours.length];
    scrollbarHighlightColor=colours[(clrPos)%colours.length];
    scrollbarShadowColor=colours[(clrPos)%colours.length];
    borderColor=colours[clrPos];
//    backgroundImage='url(images/achtergrnd_main.gif)';
//    backgroundAttachment="fixed"; 
}
}

if (document.all)
{ 
    window.document.body.onscroll=ScrollFlash;
}

}
