function swapin( themenu ) {
	if ( document.images ) {
		document[themenu].src = "images/" + themenu + "_b.gif";
	}
}

function swapout( themenu ) {
	if ( document.images ) {
		document[themenu].src = "images/" + themenu + "_a.gif";
	}
}

var origTitle = new String();

function swapClientsIn( theBox ) {
	if ( document.images ) {
		document["box" + theBox].src = "images/dark_grey_box.gif";
	}
	if ( document.getElementById ) {
		document.getElementById("current_client").style.display = "none";
		document.getElementById("clientname").childNodes[theBox].style.display = "block";
	}
	return true;
}

function swapClientsOut( theBox ) {
	if ( document.images ) {
		document["box" + theBox].src = "images/grey_box.gif";
	}
	if ( document.getElementById ) {
		document.getElementById("clientname").childNodes[theBox].style.display = "none";
		document.getElementById("current_client").style.display = "block";
	}
	return true;
}


function swapBoxIn( theBox ) {
	if ( document.images ) {
		document["box" + theBox].src = "images/dark_grey_box.gif";
	}
}

function swapBoxOut( theBox ) {
	if ( document.images ) {
		document["box" + theBox].src = "images/grey_box.gif";
	}
}