function WorkShow() {	if (workshown) {		workshown=false;		show("WorkBarNull","Works|WorksBG");	} else {		workshown=true;		show("Works|WorksBG","WorkBarNull");;	}}function OverviewShow() {	if (overviewshown) {		overviewshown=false;		show("OverviewBarNull", "Overs|OverviewBG|OverviewStripeBG");		OverShow("none");	} else {		overviewshown=true;		show("Overs|OverviewBG|OverviewStripeBG","OverviewBarNull");		OverShow("none");	}}function OverShow(toshow) {	allovers=new Array("Who","What","Our","Exp","Upd","Con");	//Hide all the buttons	for (i=0;i<allovers.length;i++) {		allhide="Over"+allovers[i]+"Button";		document.getElementById(allhide).className='OverButtonOff';	}	//Hide all the texts	for (i=0;i<allovers.length;i++) {		allhide="Over"+allovers[i];		document.getElementById(allhide).style.visibility='hidden';	}	if (toshow!="none") {		//Show the button we want		showbutton="Over"+toshow+"Button";		document.getElementById(showbutton).className='OverButtonOn';		//Show the text we want		showtext="Over"+toshow;		document.getElementById(showtext).style.visibility='visible';	}}
