Event.observe(window, "load", onWindowLoaded);

function onWindowLoaded() {
	
}

var activeContainer;

function read(theContainer) {
	if (theContainer != activeContainer) {
		if ($(theContainer)) $(theContainer).show();
		if ($(activeContainer)) $(activeContainer).hide();
		activeContainer = theContainer;
	}
	
}
