window.onload = function () {
	// init the slide bar ------------------------ //
	var d = document.getElementById('dragslider');
	if (d) d.onmousedown = move;
	var style = getCookie ('oogfondsstyle');
//	alert(style)
	if( typeof style=='NULL') style = 'css1'
	moveit.changeStyle = style;
	changeStyle (moveit.changeStyle);
	moveSlider (moveit.changeStyle);
	
	if (document.all){ 
		// document.onselectstart = function () { return false };
		// terrible IE hack: onstylesheet change: somteimes nothing shows up
		// add a character to the innerHTML and voila: everything works fine
		var m = document.getElementById('tablemain')
		if (m) {
			var tr = document.createElement('TR')
			tr.innerHTML = "<td></td><td></td>";
			m.childNodes[0].appendChild (tr)
		}
		
	} else document.body.style.MozUserSelect = 'none';
	
	
	
	var main= document.getElementById('main');
	var ds = document.getElementById('dragsliderborder');
	if (main) {
		if (document.all)
			ds.style.left = main.offsetLeft+1;
		ds.style.display = 'block';
	}
}


