
function scrolling(){ 
 document.body.style.scrollbarArrowColor = "#D4D4E8";
 document.body.style.scrollbarDarkShadowColor =  "#FFFFFF";
 document.body.style.scrollbar3dLightColor = "#FFFFFF";
 document.body.style.scrollbarBaseColor = "#FFFFFF"; 
 document.body.style.scrollbarShadowColor = "#FFFFFF"; 
 document.body.style.scrollbarFaceColor = "#9494AB"; 
 document.body.style.scrollbarHighlightColor = "#FFFFFF"; 
 document.body.style.scrollbarTrackColor = "#FFFFFF";
}

function hack(){ 
 agent = navigator.userAgent.toLowerCase();
 if (agent.indexOf("msie 6") > -1) {
  for (i=1; i < 7; i++)	{ document.getElementById('m0'+i+'img').style.behavior = "url(js/ie.htc)"; }		
	}
}

 if (typeof window.attachEvent != 'undefined')
	{
		window.attachEvent("onload", hack);
		window.attachEvent("onload", scrolling);		
	}
