// JavaScript Document - only for new browsers - sets the dockable nav into a usuable position

function settabber() {
	var col1 = xGetElementById('col1');	
	col1.style.marginRight = "0";
	col1.style.width = "24.2%";
	var flow = xGetElementById('flow');
	flow.style.backgroundPosition = "0 0";
	flow.style.cursor = "pointer";
	var tab = xGetElementById('tab');
	tab.style.margin = "0 0 0 12px";
	tab.style.cursor = "auto";
	};
addLoadEvent(settabber);

