// JavaScript Document

var linkText = '';

function showPipe(theObject)
{
	linkText = theObject.innerHTML;
	theObject.innerHTML = "|  " + theObject.innerHTML;	
	theObject.style.marginLeft = '29px';
}

function hidePipe(theObject)
{	
	theObject.innerHTML = linkText;	
	theObject.style.marginLeft = '35px';	
}
